-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.22 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.22 KB
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
{
"name": "cueball-resolver",
"version": "1.0.2",
"description": "Cueball resolver for Euroeka service discovery",
"main": "index.js",
"scripts": {
"test": "mocha test/setup.js 'src/**/*.spec.js'",
"coverage": "nyc --reporter=html --reporter=text npm run test",
"lint": "eslint test src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hekike/cueball-resolver.git"
},
"author": "Peter Marton",
"license": "MIT",
"bugs": {
"url": "https://github.com/hekike/cueball-resolver/issues"
},
"homepage": "https://github.com/hekike/cueball-resolver#readme",
"dependencies": {
"chai": "4.1.2",
"ipaddr.js": "1.5.3",
"mooremachine": "2.2.0"
},
"devDependencies": {
"bunyan": "1.8.12",
"cueball": "2.4.0",
"eslint": "4.8.0",
"eslint-config-airbnb-base": "12.0.2",
"eslint-plugin-import": "2.7.0",
"eslint-plugin-promise": "3.5.0",
"mocha": "4.0.1",
"nyc": "11.2.1",
"pre-commit": "1.2.2",
"restify": "6.0.1",
"restify-clients": "1.5.2",
"sinon": "4.0.1",
"sinon-chai": "2.14.0"
},
"pre-commit": [
"lint",
"test"
],
"nyc": {
"exclude": [
"**/*.spec.js",
"test/setup.js",
"build"
]
}
}