-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
55 lines (55 loc) · 1.73 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
{
"name": "sneeze",
"version": "3.0.0",
"description": "Easily join SWIM networks",
"main": "sneeze.js",
"scripts": {
"test": "lab -v -P test -t 80 -I SharedArrayBuffer,Atomics,URL,URLSearchParams,BigUint64Array,BigInt64Array,BigInt",
"coveralls": "lab -s test/use.test.js -r lcov | coveralls",
"coverage": "lab -v test/use.test.js -t 85 -r html > coverage.html",
"prettier": "prettier --write --no-semi --single-quote *.js test/*.js",
"reset": "npm run clean && npm i && npm test",
"clean": "rm -rf node_modules yarn.lock package-lock.json",
"repo-tag": "REPO_VERSION=`node -e \"console.log(require('./package').version)\"` && echo TAG: v$REPO_VERSION && git commit -a -m v$REPO_VERSION && git push && git tag v$REPO_VERSION && git push --tags;",
"repo-publish": "npm run prettier && npm test && npm run repo-tag && npm publish --access public --registry=http://registry.npmjs.org"
},
"repository": {
"type": "git",
"url": "https://github.com/rjrodger/sneeze.git"
},
"keywords": [
"swim",
"sneeze",
"peer",
"discovery"
],
"author": "Richard Rodger richardrodger.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/rjrodger/sneeze/issues"
},
"homepage": "https://github.com/rjrodger/sneeze",
"dependencies": {
"@voxgig/swim": "^0.7.0",
"ansi-escapes": "^4.3.1",
"chalk": "^4.0.0",
"jsonpath": "^1.0.2",
"keypress": "^0.2.1",
"lodash": "^4.17.15",
"nid": "^1.1.0",
"optioner": "^5.0.1",
"pad": "^3.2.0",
"static-eval": "^2.0.5"
},
"devDependencies": {
"@hapi/code": "^8.0.1",
"@hapi/lab": "^22.0.4",
"coveralls": "^3.1.0",
"prettier": "^2.0.5"
},
"files": [
"LICENSE",
"README.md",
"sneeze.js"
]
}