You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
134 lines
4.2 KiB
134 lines
4.2 KiB
{
|
|
"_args": [
|
|
[
|
|
"@petamoriken/float16@3.6.6",
|
|
"/Users/mac/Documents/朗业/2022/h-河道-水面保洁/patrol-gamble-mobile"
|
|
]
|
|
],
|
|
"_from": "@petamoriken/float16@3.6.6",
|
|
"_id": "@petamoriken/float16@3.6.6",
|
|
"_inBundle": false,
|
|
"_integrity": "sha512-3MUulwMtsdCA9lw8a/Kc0XDBJJVCkYTQ5aGd+///TbfkOMXoOGAzzoiYKwPEsLYZv7He7fKJ/mCacqKOO7REyg==",
|
|
"_location": "/@petamoriken/float16",
|
|
"_phantomChildren": {},
|
|
"_requested": {
|
|
"type": "version",
|
|
"registry": true,
|
|
"raw": "@petamoriken/float16@3.6.6",
|
|
"name": "@petamoriken/float16",
|
|
"escapedName": "@petamoriken%2ffloat16",
|
|
"scope": "@petamoriken",
|
|
"rawSpec": "3.6.6",
|
|
"saveSpec": null,
|
|
"fetchSpec": "3.6.6"
|
|
},
|
|
"_requiredBy": [
|
|
"/geotiff"
|
|
],
|
|
"_resolved": "https://registry.npmjs.org/@petamoriken/float16/-/float16-3.6.6.tgz",
|
|
"_spec": "3.6.6",
|
|
"_where": "/Users/mac/Documents/朗业/2022/h-河道-水面保洁/patrol-gamble-mobile",
|
|
"author": {
|
|
"name": "Kenta Moriuchi",
|
|
"email": "moriken@kimamass.com",
|
|
"url": "https://moriken.dev"
|
|
},
|
|
"browser": "./browser/float16.js",
|
|
"bugs": {
|
|
"url": "https://github.com/petamoriken/float16/issues"
|
|
},
|
|
"description": "IEEE 754 half-precision floating-point for JavaScript",
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.18.9",
|
|
"@babel/core": "^7.18.9",
|
|
"@babel/plugin-transform-modules-commonjs": "^7.18.6",
|
|
"@types/nightwatch": "^2.0.9",
|
|
"babel-plugin-replace-import-extension": "^1.1.3",
|
|
"browserslist": "^4.21.2",
|
|
"concurrently": "^7.3.0",
|
|
"eslint": "^8.20.0",
|
|
"eslint-plugin-import": "^2.26.0",
|
|
"eslint-plugin-jsdoc": "^39.3.3",
|
|
"espower-cli": "^1.1.0",
|
|
"espower-loader": "^1.2.2",
|
|
"exorcist": "^2.0.0",
|
|
"find-unused-exports": "^3.0.0",
|
|
"http-server": "^14.1.1",
|
|
"mocha": "^10.0.0",
|
|
"nightwatch": "^2.2.3",
|
|
"nightwatch-saucelabs-endsauce": "^1.2.1",
|
|
"nyc": "^15.1.0",
|
|
"power-assert": "^1.4.2",
|
|
"rollup": "^2.77.0",
|
|
"rollup-plugin-cleanup": "^3.2.1",
|
|
"source-map-support": "^0.5.21"
|
|
},
|
|
"exports": {
|
|
".": {
|
|
"require": "./lib/index.cjs",
|
|
"import": "./src/index.mjs"
|
|
},
|
|
"./inspect": {
|
|
"require": "./inspect/node.cjs",
|
|
"import": "./inspect/node.mjs"
|
|
}
|
|
},
|
|
"files": [
|
|
"src",
|
|
"lib",
|
|
"browser",
|
|
"inspect/node.mjs",
|
|
"inspect/node.cjs",
|
|
"index.d.ts"
|
|
],
|
|
"homepage": "https://github.com/petamoriken/float16",
|
|
"keywords": [
|
|
"float16",
|
|
"binary16",
|
|
"FP16",
|
|
"half-precision",
|
|
"ieee754",
|
|
"Float16Array",
|
|
"TypedArray",
|
|
"DataView",
|
|
"getFloat16",
|
|
"setFloat16",
|
|
"hfround",
|
|
"ponyfill",
|
|
"shim"
|
|
],
|
|
"license": "MIT",
|
|
"main": "./lib/index.cjs",
|
|
"module": "./src/index.mjs",
|
|
"name": "@petamoriken/float16",
|
|
"packageManager": "yarn@1.22.19",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/petamoriken/float16.git"
|
|
},
|
|
"scripts": {
|
|
"build": "concurrently \"yarn:build:*\"",
|
|
"build:browser": "rollup -c",
|
|
"build:lib": "babel src -d lib --out-file-extension .cjs",
|
|
"clean": "rm -rf lib browser docs coverage .nyc_output",
|
|
"coverage": "nyc --reporter=lcov mocha test/*.js",
|
|
"docs": "mkdir -p docs && cp README.md docs/index.md && yarn run docs:test",
|
|
"docs:test": "mkdir -p docs/test && concurrently \"yarn:docs:test:*\"",
|
|
"docs:test:build": "cp test/*.js docs/test && tools/power",
|
|
"docs:test:copy": "cp browser/float16.js docs/test/float16.js && cp test/browser/*.html docs/test",
|
|
"docs:test:dependencies": "cp node_modules/mocha/mocha.js node_modules/mocha/mocha.css node_modules/power-assert/build/power-assert.js docs/test",
|
|
"lint": "concurrently \"yarn:lint:*\"",
|
|
"lint:eslint": "eslint src/**/*.mjs",
|
|
"lint:unused": "find-unused-exports --module-glob 'src/**/*.mjs'",
|
|
"prepublishOnly": "yarn run lint && yarn test",
|
|
"refresh": "yarn run clean && yarn run build && yarn run docs",
|
|
"setup-test-browser": "http-server docs/test -p 8000 > /dev/null 2>&1 &",
|
|
"test": "mocha test/*.js",
|
|
"test-browser": "nightwatch -e chrome,chrome_old,firefox,firefox_old,firefox_esr,edge,edge_old,safari,safari_old",
|
|
"version": "NPM_VERSION_SCRIPT=1 yarn run refresh"
|
|
},
|
|
"sideEffects": false,
|
|
"types": "index.d.ts",
|
|
"version": "3.6.6"
|
|
}
|