-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
60 lines (60 loc) · 1.62 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
{
"name": "oak-tools",
"version": "0.5.7",
"description": "Helpful utilities for developing oak applications",
"main": "index.js",
"scripts": {
"coverage": "node node_modules/.bin/istanbul cover node_modules/.bin/tape test/*.js || true",
"coveralls": "npm run-script coverage && node node_modules/.bin/coveralls < coverage/lcov.info && rm -rf coverage/ || true",
"generate-docs": "node_modules/.bin/jsdoc -c jsdoc.json",
"readme": "node ./node_modules/.bin/node-readme",
"test": "node_modules/.bin/standard && find test/*.js | xargs -n 1 node | node_modules/.bin/tap-difflet"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OakLabsInc/oak-tools.git"
},
"contributors": [
"Flynn Joffray <[email protected]>",
"Nir Ziv <[email protected]>"
],
"engines": {
"node": ">=6.0.0"
},
"keywords": [
"utilities",
"oak"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/OakLabsInc/oak-tools/issues"
},
"homepage": "https://github.com/OakLabsInc/oak-tools#readme",
"dependencies": {
"eventemitter2": "~4.1.0",
"mdns-js": "1.0.0",
"minimatch": "~3.0.3",
"msgpack5": "~4.0.0",
"pino": "~4.10.1",
"safe-buffer": "~5.1.0",
"swagger-client": "~3.8.6",
"uuid": "~3.3.0",
"ws": "~3.3.1",
"ws-heartbeats": "~1.0.0"
},
"standard": {
"ignore": [
"docs"
]
},
"devDependencies": {
"coveralls": "~3.0.1",
"docdash": "~0.4.0",
"istanbul": "~0.4.5",
"jsdoc": "~3.5.0",
"node-readme": "~0.1.9",
"standard": "~12.0.0",
"tap-difflet": "~0.7.0",
"tape": "~4.9.0"
}
}