-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.27 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
{
"name": "@vanioinformatika/appstate",
"version": "2.0.6",
"description": "Application state handler",
"main": "appState.js",
"scripts": {
"test": "NODE_ENV=test DEBUG=appState mocha --exit ./appState.spec.js",
"security": "npm audit --production --json",
"format": "prettier --write ./appState*.ts ./appState*.js",
"coverage": "nyc --reporter=lcov npm test",
"preversion": "npm run format && npm run security && npm test",
"version": "",
"postversion": "git push && git push --tags"
},
"devDependencies": {
"mocha": "^8.1.3",
"nyc": "^15.1.0",
"prettier": "^2.1.1",
"should": "^13.2.3",
"should-sinon": "0.0.6",
"sinon": "^9.0.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vanioinformatika/node-appstate.git"
},
"engines": {
"node": ">=10.0.0"
},
"keywords": [
"application",
"state",
"nodejs",
"node"
],
"author": "Istvan Pato <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/vanioinformatika/node-appstate/issues"
},
"homepage": "https://github.com/vanioinformatika/node-appstate#readme",
"nyc": {
"exclude": [
"**/*.spec.js",
"node_modules"
]
},
"dependencies": {
"debug": "^4.1.1"
}
}