-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.45 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.45 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
{
"name": "@code4rena/skeleton",
"version": "1.2.1",
"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"
},
"keywords": [],
"author": "Nathan LaFreniere <nlf@nlf.sh>",
"license": "ISC",
"dependencies": {
"mustache": "^4.2.0"
},
"devDependencies": {
"@tsconfig/node18": "^18.0.0",
"@types/mustache": "^4.0.0",
"@types/node": "^18.0.0",
"@types/tap": "^15.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.0.0",
"tap": "^16.0.0",
"ts-node": "^10.0.0",
"typescript": "5.2.2"
},
"peerDependencies": {
"code-skeleton": "^2.0.0"
},
"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/**"
],
"tap": {
"coverage": true,
"ts": true
}
}