-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 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
52
53
54
{
"name": "hmpo-cached-model",
"version": "6.0.0",
"description": "Cached polling model",
"main": "lib/index.js",
"scripts": {
"test": "npm run lint && npm run unit && npm run check-coverage && npm audit --production",
"lint": "eslint .",
"unit": "nyc --reporter=lcov --reporter=text-summary _mocha test/ --recursive",
"check-coverage": "nyc check-coverage",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "https://github.com/HMPO/hmpo-cached-model.git"
},
"author": "HMPO",
"license": "MIT",
"engines": {
"node": "20.x || 22.x"
},
"bugs": {
"url": "https://github.com/HMPO/hmpo-cached-model/issues"
},
"homepage": "https://github.com/HMPO/hmpo-cached-model#readme",
"dependencies": {
"async": "^3.2.5",
"debug": "^4.3.7",
"hmpo-model": "^6.0.1"
},
"devDependencies": {
"chai": "^4.5.0",
"eslint": "^9.11.1",
"globals": "^15.9.0",
"hmpo-logger": "^8.0.0",
"mocha": "^10.7.3",
"nyc": "^17.1.0",
"sinon": "^19.0.2",
"sinon-chai": "^3.7.0",
"husky": "^9.1.6"
},
"nyc": {
"all": true,
"exclude": [
"coverage/**",
"test/**",
"eslint.config.js"
],
"lines": 100,
"branches": 100,
"functions": 100,
"statements": 100
}
}