forked from alexbol99/flatten-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.79 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@flatten-js/core",
"version": "1.0.18",
"description": "Javascript library for 2d geometry",
"main": "dist/main.cjs.js",
"umd:main": "dist/main.umd.js",
"unpkg": "dist/main.umd.js",
"module": "dist/main.esm.js",
"types": "index.d.ts",
"nyc": {
"require": [
"@babel/register"
],
"sourceMap": false,
"instrument": false
},
"scripts": {
"test": "cross-env NODE_ENV=test nyc --reporter=text --reporter=html mocha",
"generate-docs": "jsdoc -c ./.jsdoc.json --verbose",
"publish-npm": "npm publish --access public",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"build": "rollup -c"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexbol99/flatten-js.git"
},
"keywords": [
"geometry",
"2d",
"algorithms",
"shape",
"contour",
"polygon",
"distance",
"intersection",
"point in polygon",
"spatial search",
"affine transformations"
],
"author": "Alex Bol <[email protected]> (https://github.com/alexbol99)",
"license": "MIT",
"bugs": {
"url": "https://github.com/alexbol99/flatten-js/issues"
},
"homepage": "https://github.com/alexbol99/flatten-js#readme",
"engines": {
"node": ">=4.2.4"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.3",
"@babel/node": "^7.2.2",
"@babel/preset-env": "^7.3.1",
"@babel/register": "^7.0.0",
"babel-plugin-istanbul": "^5.1.1",
"chai": "^4.2.0",
"coveralls": "^3.0.3",
"cross-env": "^5.2.0",
"jsdoc": "^3.5.5",
"minami": "^1.2.3",
"mocha": "^6.2.0",
"nyc": "^14.1.1",
"rollup": "^1.7.3",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-terser": "^4.0.4"
},
"dependencies": {
"@flatten-js/interval-tree": "^1.0.7"
}
}