mirror of
https://github.com/nunocoracao/blowfish.git
synced 2026-01-30 16:31:52 +01:00
config redirect
This commit is contained in:
77
node_modules/robust-predicates/package.json
generated
vendored
Normal file
77
node_modules/robust-predicates/package.json
generated
vendored
Normal file
@@ -0,0 +1,77 @@
|
||||
{
|
||||
"name": "robust-predicates",
|
||||
"version": "3.0.1",
|
||||
"description": "Fast robust predicates for computational geometry",
|
||||
"keywords": [
|
||||
"computational geometry",
|
||||
"robust arithmetic"
|
||||
],
|
||||
"author": "Vladimir Agafonkin",
|
||||
"license": "Unlicense",
|
||||
"type": "module",
|
||||
"main": "index.js",
|
||||
"unpkg": "umd/predicates.min.js",
|
||||
"module": "index.js",
|
||||
"exports": "./index.js",
|
||||
"types": "index.d.ts",
|
||||
"scripts": {
|
||||
"build": "mkdirp esm && node compile.js",
|
||||
"lint": "eslint *.js src test/test.js",
|
||||
"test": "npm run lint && npm run build && node test/test.js",
|
||||
"cov": "c8 node test/test.js",
|
||||
"bench": "node bench.js",
|
||||
"prepublishOnly": "npm run test && rollup -c"
|
||||
},
|
||||
"devDependencies": {
|
||||
"c8": "^7.7.0",
|
||||
"eslint": "^7.23.0",
|
||||
"eslint-config-mourner": "^3.0.0",
|
||||
"mkdirp": "^1.0.4",
|
||||
"nextafter": "^1.0.0",
|
||||
"robust-in-sphere": "^1.1.3",
|
||||
"robust-orientation": "^1.1.3",
|
||||
"rollup": "^2.44.0",
|
||||
"rollup-plugin-terser": "^7.0.2",
|
||||
"tape": "^5.2.2",
|
||||
"terser": "^5.6.1"
|
||||
},
|
||||
"files": [
|
||||
"index.js",
|
||||
"index.d.ts",
|
||||
"esm",
|
||||
"umd"
|
||||
],
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/mourner/robust-predicates.git"
|
||||
},
|
||||
"eslintConfig": {
|
||||
"extends": "mourner",
|
||||
"parserOptions": {
|
||||
"ecmaVersion": 2020
|
||||
},
|
||||
"rules": {
|
||||
"camelcase": 0,
|
||||
"new-cap": 0,
|
||||
"no-unused-vars": [
|
||||
2,
|
||||
{
|
||||
"varsIgnorePattern": "splitter|bvirt|c|[ab]hi|[ab]lo|_[ijk0]|u3|[st][01]"
|
||||
}
|
||||
],
|
||||
"no-lonely-if": 0
|
||||
},
|
||||
"globals": {
|
||||
"$Fast_Two_Sum": false,
|
||||
"$Two_Sum": false,
|
||||
"$Two_Diff_Tail": false,
|
||||
"$Split": false,
|
||||
"$Two_Product": false,
|
||||
"$Two_Product_Presplit": false,
|
||||
"$Two_One_Product": false,
|
||||
"$Cross_Product": false,
|
||||
"$Square_Sum": false,
|
||||
"$Two_Product_Sum": false
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user