-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
38 lines (38 loc) · 1.26 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
{
"name": "labelgun",
"version": "6.1.0",
"description": "A mapping library agnostic labelling engine",
"main": "lib/labelgun.js",
"scripts": {
"test": "jasmine",
"coverage": "istanbul cover jasmine -x 'spec/**/*.js'",
"coverage-verbose": "istanbul cover jasmine -v -i 'src/labelgun.js'",
"watch": "webpack --watch",
"build": "webpack",
"build-prod": "webpack --env.minified",
"build-both": "webpack && webpack --env.minified",
"benchmark": "node ./benchmark/benchmark.js",
"doc": "jsdoc src/labelgun.js --destination docs/documentation --pedantic",
"doc-deploy": "npm run doc && git add docs && git commit -m 'Updated docs' && git push origin --delete gh-pages && git subtree push --prefix docs/ origin gh-pages"
},
"author": "James Milner <[email protected]> (http://geovation.uk/)",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:Geovation/labelgun.git"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"eslint": "^4.6.0",
"istanbul": "^0.4.5",
"jasmine": "^2.8.0",
"jsdoc": "^3.5.4",
"webpack": "^3.5.5"
},
"dependencies": {
"rbush": "^2.0.1"
}
}