forked from sindresorhus/node-module-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.09 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.09 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
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "typescript-node-module-boilerplate",
"version": "0.0.0",
"description": "",
"keywords": [
""
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/EdJoPaTo/typescript-node-module-boilerplate.git"
},
"author": {
"name": "EdJoPaTo",
"email": "typescript-node-module-boilerplate-npm-package@edjopato.de",
"url": "https://edjopato.de"
},
"scripts": {
"build": "rm -rf ./dist && tsc",
"prepack": "npm run build",
"test": "tsc --sourceMap && xo && c8 --all node --test --enable-source-maps"
},
"type": "module",
"engines": {
"node": ">=14"
},
"dependencies": {},
"devDependencies": {
"@types/node": "^18.18.13",
"c8": "^11.0.0",
"typescript": "^6.0.2",
"xo": "^1.2.2"
},
"files": [
"dist",
"!*.test.*",
"!test.*"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"xo": [
{
"rules": {
"@typescript-eslint/prefer-readonly-parameter-types": "warn"
}
},
{
"files": [
"**/*.test.*",
"**/test.*"
],
"rules": {
"@typescript-eslint/prefer-readonly-parameter-types": "off"
}
}
]
}