mirror of
https://github.com/anvaka/isect.git
synced 2025-12-08 18:26:10 +00:00
44 lines
998 B
JSON
44 lines
998 B
JSON
{
|
|
"name": "isect",
|
|
"version": "3.0.2",
|
|
"main": "build/isect.js",
|
|
"module": "build/isect.module.js",
|
|
"types": "./index.d.ts",
|
|
"scripts": {
|
|
"pretest": "rollup -c",
|
|
"test": "tap test/*.js",
|
|
"start": "rm -rf build && rollup -c && rollup -c rollup.config-min.js",
|
|
"prepublish": "npm run start"
|
|
},
|
|
"dependencies": {
|
|
"splaytree": "^2.0.2"
|
|
},
|
|
"devDependencies": {
|
|
"babel-eslint": "^9.0.0",
|
|
"benchmark": "^2.1.4",
|
|
"bentley-ottman-sweepline": "^0.1.4",
|
|
"eslint": "^5.6.0",
|
|
"flatbush": "^3.0.0",
|
|
"ngraph.random": "^0.1.0",
|
|
"rollup": "^0.66.1",
|
|
"rollup-plugin-buble": "^0.19.2",
|
|
"rollup-plugin-commonjs": "^9.1.8",
|
|
"rollup-plugin-node-resolve": "^3.4.0",
|
|
"rollup-plugin-uglify": "^6.0.0",
|
|
"tap": "^12.0.1"
|
|
},
|
|
"eslintConfig": {
|
|
"root": true,
|
|
"env": {
|
|
"node": true
|
|
},
|
|
"extends": [
|
|
"eslint:recommended"
|
|
],
|
|
"rules": {},
|
|
"parserOptions": {
|
|
"parser": "babel-eslint"
|
|
}
|
|
}
|
|
}
|