-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.49 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
61
62
63
64
65
{
"name": "@slimio/cpu-addon",
"version": "1.0.0",
"description": "SlimIO CPU Addon",
"main": "index.js",
"type": "module",
"engines": {
"node": ">=12"
},
"scripts": {
"test": "ava --verbose",
"doc": "jsdoc -c ./jsdoc.json -r -R ./README.md -P ./package.json --verbose",
"coverage": "nyc ava",
"report": "nyc report --reporter=html"
},
"husky": {
"hooks": {
"pre-push": "cross-env eslint index.js && npm test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/SlimIO/cpu.git"
},
"keywords": [
"slimio",
"cpu",
"addon"
],
"files": [
"index.js"
],
"nyc": {
"check-coverage": true,
"per-file": false,
"lines": 98,
"statements": 98,
"functions": 98,
"branches": 90
},
"author": "SlimIO",
"license": "MIT",
"bugs": {
"url": "https://github.com/SlimIO/cpu/issues"
},
"homepage": "https://github.com/SlimIO/cpu#readme",
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@escommunity/minami": "^1.0.0",
"@slimio/eslint-config": "^4.1.0",
"ava": "^3.8.2",
"cross-env": "^7.0.2",
"eslint": "^7.0.0",
"husky": "^4.2.5",
"jsdoc": "^3.6.4",
"nyc": "^15.0.1"
},
"dependencies": {
"@slimio/addon": "^0.22.1",
"@slimio/metrics": "^0.4.0",
"@slimio/units": "^0.3.1"
}
}