-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.29 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
{
"name": "pending-promise-recycler",
"version": "0.2.3",
"description": "Save precious resources and avoid performing the same operation twice by recycling pending promises",
"main": "index.js",
"engines": {
"node": ">=12"
},
"scripts": {
"lint": "npx eslint index.js index.test.js --fix",
"test": "nyc mocha index.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Dunkelheit/pending-promise-recycler.git"
},
"keywords": [
"pending",
"promise",
"recycle"
],
"author": "Arturo Martinez (https://github.com/dunkelheit)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Dunkelheit/pending-promise-recycler/issues"
},
"homepage": "https://github.com/Dunkelheit/pending-promise-recycler#readme",
"devDependencies": {
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"eslint": "^7.32.0",
"husky": "^7.0.2",
"mocha": "^9.1.1",
"nyc": "^15.1.0",
"rewire": "^5.0.0",
"sinon": "^11.1.2",
"sinon-chai": "^3.7.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm run test"
}
},
"nyc": {
"include": [
"index.js"
],
"exclude": [],
"all": true,
"reporter": [
"text",
"text-summary",
"lcov"
]
}
}