-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.06 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.06 KB
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
{
"name": "<lib_name>",
"version": "0.0.0",
"description": "<description>",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "node scripts/test.mjs && npm run test:ts && npm run lint",
"test:ci": "node scripts/test.mjs && npm run test:ts && npm run lint:ci",
"test:only": "node scripts/test.mjs --only",
"test:ts": "tsd",
"lint": "eslint"
},
"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": "BlueOak-1.0.0",
"devDependencies": {
"@types/node": "^24.3.1",
"eslint": "^9.35.0",
"glob": "^11.0.3",
"neostandard": "^0.12.2",
"tsd": "^0.33.0",
"typescript": "^5.9.2"
},
"tsd": {
"directory": "test"
},
"tap": {
"check-coverage": false
},
"standard": {
"ignore": [
"*.d.ts",
"*.test-d.ts"
]
}
}