-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.33 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
{
"name": "domain-tree",
"version": "0.3.1",
"description": "domain tree store",
"main": "lib/index.js",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/deployable/node-domain-tree.git"
},
"bugs": {
"url": "http://github.com/deployable/node-domain-tree/issues"
},
"scripts": {
"test": "mocha test/unit test/int",
"test:unit": "mocha test/unit",
"test:int": "mocha test/int",
"test:lint": "eslint lib/ test/",
"test:benchmark": "node test/benchmark/benchmark_slice_lodash.js",
"test:coverage": "nyc _mocha test/unit test/int && nyc report -r html && nyc check-coverage",
"release:test": "set -uex; yarn run test; yarn run build; npm version prerelease; npm publish --tag testing --access public",
"release:patch": "set -uex; git pull; rm -rf node_modules; yarn; yarn run test:coverage; yarn run test:lint; ./make.sh test:all; npm version patch; git push; npm publish --access public; git push --tags"
},
"keywords": [
"domain",
"tree"
],
"author": "matt hoyle",
"license": "MIT",
"devDependencies": {
"benchmark": "^2.1.2",
"chai": "^4.1.2",
"eslint": "^4.18.2",
"mocha": "^5.0.2",
"nyc": "^11.4.1"
},
"dependencies": {
"debug": "^3.1.0",
"lodash": "^4.17.5"
},
"engine": "node >= 6.0"
}