-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
81 lines (81 loc) · 2.23 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
72
73
74
75
76
77
78
79
80
81
{
"name": "de9im",
"version": "1.3.1",
"description": "DE-9IM spatial predicate library implemented in Javascript.",
"main": "de9im.js",
"module": "index.js",
"unpkg": "de9im.min.js",
"jsdelivr": "de9im.min.js",
"scripts": {
"build": "run-s lint bundle",
"bundle": "rollup --silent -c",
"docs": "run-s docs:clean docs:build docs:deploy",
"docs:clean": "shx rm -rf docs/data",
"docs:deploy": "NODE_DEBUG=gh-pages gh-pages -d docs",
"docs:build": "shx mkdir docs/data; cp -R test/data/bench/* docs/data/",
"lint": "run-s lint:js lint:md",
"lint:js": "eslint ./index.js ./src/**/*.js",
"lint:md": "remark -q .",
"prepare": "npm run build",
"test": "run-s test:lint test:build",
"test:bench": "run-s test:bench:run test:bench:report",
"test:bench:run": "node ./test/bench.js",
"test:bench:report": "node ./test/report.js",
"test:build": "nyc --reporter=lcov --reporter=text tap ./test/*.test.js",
"test:lint": "eslint ./test/*.js"
},
"files": [
"index.js",
"src/**/*.js",
"de9im.js",
"de9im.min.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/dpmcmlxxvi/de9im.git"
},
"keywords": [
"DE-9IM",
"spatial",
"predicate",
"relations"
],
"author": "Daniel Pulido <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dpmcmlxxvi/de9im/issues"
},
"homepage": "https://github.com/dpmcmlxxvi/de9im",
"dependencies": {
"@turf/turf": "5.1.6",
"earcut": "2.2.3",
"geojson-rbush": "2.2.1"
},
"devDependencies": {
"benny": "^3.7.1",
"coveralls": "^3.1.1",
"eslint": "^8.8.0",
"eslint-config-google": "^0.14.0",
"esm": "^3.2.25",
"gh-pages": "^3.2.3",
"glob": "^7.2.0",
"json2md": "^1.12.0",
"np": "^7.6.0",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"path": "^0.12.7",
"remark-cli": "^10.0.1",
"remark-preset-lint-markdown-style-guide": "^5.1.2",
"rollup": "^2.66.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^7.0.2",
"shx": "^0.3.4",
"tap": "^15.1.6"
},
"remarkConfig": {
"plugins": [
"remark-preset-lint-markdown-style-guide"
]
}
}