-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.56 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.56 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
58
59
60
61
62
63
64
65
66
{
"name": "@code4rena/skeleton",
"version": "2.0.0-2",
"description": "",
"main": "lib/index.js",
"scripts": {
"test": "tap",
"clean": "./scripts/clean.ts",
"lint": "eslint .",
"posttest": "npm run lint",
"prepack": "tsc --project tsconfig.build.json",
"prelint": "tsc --noEmit",
"postlint": "npm run skeleton:verify",
"skeleton:apply": "code-skeleton apply",
"preskeleton:verify": "npm run prepack",
"skeleton:verify": "code-skeleton verify",
"postinstall": "tap build"
},
"keywords": [],
"author": "Nathan LaFreniere <nlf@nlf.sh>",
"license": "ISC",
"dependencies": {
"mustache": "^4.2.0"
},
"devDependencies": {
"@tapjs/sinon": "^1.1.18",
"@tapjs/tsx": "^1.1.19",
"@tsconfig/node20": "^20.0.0",
"@types/mustache": "^4.0.0",
"@types/node": "^20.0.0",
"@types/sinon": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.0.0",
"tap": "^18.7.0",
"tsx": "4.2.1",
"typescript": "^5.0.0"
},
"peerDependencies": {
"code-skeleton": "^2.0.0"
},
"overrides": {
"@tapjs/tsx": {
"tsx": "$tsx"
}
},
"skeleton": {
"module": ".",
"variables": {
"library": true,
"ci": {
"postgres": false,
"env_vault": false
}
}
},
"//": "This file is partially managed by code-skeleton. Changes may be overwritten.",
"types": "lib/index.d.ts",
"files": [
"bin/**/*.js",
"lib/**/*.js",
"lib/**/*.d.ts",
"!lib/types/**",
"lib/content/**"
]
}