-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.38 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
{
"name": "lightswitch",
"version": "1.0.1",
"description": "The feature switch service",
"main": "index.js",
"scripts": {
"lint": "standard",
"release": "npm run lint && npm test && standard-version && git push origin master && npm publish",
"test": "tap test/*.js --100",
"update-coc": "weallbehave -o . && git add CODE_OF_CONDUCT.md && git commit -m 'docs(coc): updated CODE_OF_CONDUCT.md'",
"update-contrib": "weallcontribute -o . && git add CONTRIBUTING.md && git commit -m 'docs(contributing): updated CONTRIBUTING.md'"
},
"bin": "bin/lightswitch",
"repository": {
"type": "git",
"url": "git+https://github.com/emkay/lightswitch.git"
},
"keywords": [],
"author": {
"name": "Michael Matuzak",
"email": "mmatuzak@gmail.com",
"twitter": "@mmatuzak"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/emkay/lightswitch/issues"
},
"homepage": "https://github.com/emkay/lightswitch#readme",
"dependencies": {
"@hyperswarm/network": "0.0.4",
"@iarna/toml": "^1.7.1",
"hyperdb": "^3.2.0",
"pino": "^5.8.0",
"pump": "^3.0.0",
"theodore": "^1.4.0",
"yargs": "^12.0.2"
},
"devDependencies": {
"pino-pretty": "^2.2.2",
"rimraf": "^2.6.3",
"standard": "^11.0.1",
"standard-version": "^9.5.0",
"tap": "^14.2.2",
"weallbehave": "^1.2.0",
"weallcontribute": "^1.0.8"
}
}