generated from metcoder95/lib_template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 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
{
"name": "@metcoder95/one-more-time",
"version": "1.0.0",
"description": "Retry library with a focus on flow control",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "tap --cov test/**/*.test.js && npm run test:ts && npm run lint",
"test:ci": "tap --cov test/**/*.test.js && npm run test:ts && npm run lint:ci",
"test:only": "tap --only",
"test:unit": "tap test/**/*.test.js",
"test:ts": "tsd",
"lint": "standard | snazzy",
"lint:ci": "standard",
"release": "npx standard-version"
},
"engines": {
"node": ">=18"
},
"keywords": [],
"repository": {
"type": "git",
"url": "git+https://github.com/metcoder95/one-more-time.git"
},
"readme": "https://github.com/metcoder95/one-more-time/blob/main/README.md",
"bugs": {
"url": "https://github.com/metcoder95/one-more-time/issues"
},
"author": "metcoder95 <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/node": "^22.0.0",
"husky": "^9.0.11",
"snazzy": "^9.0.0",
"standard": "^17.1.0",
"tap": "^16.3.8",
"tsd": "^0.31.0",
"typescript": "^5.2.2"
},
"tsd": {
"directory": "test"
},
"tap": {
"check-coverage": false
},
"standard": {
"ignore": [
"*.d.ts",
"*.test-d.ts"
]
}
}