-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.23 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
{
"name": "@slimio/sendbundle",
"version": "0.1.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node index.js",
"prepublishOnly": "pkg-ok",
"test": "ava --verbose",
"doc": "jsdoc -c ./jsdoc.json -r -R ./README.md -P ./package.json --verbose",
"coverage": "c8 -r=\"html\" npm test"
},
"keywords": [],
"author": "SlimIO",
"license": "MIT",
"dependencies": {
"@slimio/tcp-sdk": "^0.4.6"
},
"devDependencies": {
"@commitlint/cli": "^8.0.0",
"@commitlint/config-conventional": "^8.0.0",
"@escommunity/minami": "^1.0.0",
"@slimio/eslint-config": "^2.0.4",
"ava": "^2.1.0",
"c8": "^5.0.1",
"dotenv": "^8.0.0",
"eslint": "^6.0.0",
"husky": "^2.4.1",
"jsdoc": "^3.6.2",
"pkg-ok": "^2.3.1"
},
"engines": {
"node": ">=10"
},
"husky": {
"hooks": {
"pre-push": "npm test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"nyc": {
"check-coverage": true,
"per-file": false,
"lines": 98,
"statements": 98,
"functions": 98,
"branches": 90
}
}