-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
59 lines (59 loc) · 1.64 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
{
"name": "topolis",
"description": "JavaScript topology representation and manipulation",
"version": "0.3.0",
"author": "Björn Harrtell <bjorn@wololo.org>",
"keywords": [
"JSTS",
"JavaScript",
"JTS",
"Java",
"Topology",
"Geometry"
],
"license": "MIT",
"devDependencies": {
"@babel/core": "7.10.5",
"@babel/preset-env": "7.10.4",
"@babel/register": "7.10.5",
"chai": "4.2.0",
"codecov": "3.7.2",
"eslint": "7.5.0",
"eslint-config-standard": "14.1.1",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.0.1",
"esm": "3.2.25",
"git-rev-sync": "2.0.0",
"jsdoc": "3.6.4",
"jsts": "2.3.0",
"mocha": "8.0.1",
"mocha-lcov-reporter": "1.3.0",
"nyc": "15.1.0",
"rbush": "3.0.1",
"rollup": "2.22.2",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-replace": "2.2.0",
"rollup-plugin-terser": "6.1.0"
},
"repository": {
"type": "git",
"url": "git://github.com/bjornharrtell/topolis.git"
},
"standard": {
"globals": [
"describe",
"it",
"beforeEach"
]
},
"scripts": {
"test": "nyc mocha --timeout 10s -r esm -r @babel/register --recursive test",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"test-watch": "mocha -w --timeout 10s --compilers js:babel-register --require babelhook --recursive test",
"build": "rollup -c rollup.config.js > dist/topolis.min.js",
"build-debug": "rollup -m inline -c rollup.config.js > dist/topolis.debug.js",
"jsdoc": "jsdoc -c doc/config.json"
}
}