-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.21 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
{
"name": "<lib_name>",
"version": "0.0.0",
"description": "<description>",
"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"
},
"keywords": [],
"repository": {
"type": "git",
"url": "git+https://github.com/metcoder95/<lib_name>.git"
},
"readme": "https://github.com/metcoder95/<lib_name>/blob/main/README.md",
"bugs": {
"url": "https://github.com/metcoder95/<lib_name>/issues"
},
"author": "metcoder95 <me@metcoder.dev>",
"license": "MIT",
"devDependencies": {
"@types/node": "^14.17.6",
"husky": "^7.0.2",
"snazzy": "^9.0.0",
"standard": "^16.0.3",
"tap": "^15.0.10",
"tsd": "^0.17.0",
"typescript": "^4.4"
},
"dependencies": {
},
"tsd": {
"directory": "test"
},
"tap": {
"check-coverage": false
},
"standard": {
"ignore": [
"*.d.ts",
"*.test-d.ts"
]
}
}