-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.63 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.63 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
67
{
"name": "@code4rena/botrace-utils",
"version": "1.0.2",
"description": "",
"repository": {
"type": "git",
"url": "https://github.com/code4rena-dev/botrace-utils.git"
},
"main": "lib/index.js",
"bin": {
"c4bru": "bin/index.js"
},
"scripts": {
"test": "tap",
"clean": "./scripts/clean.ts",
"prelint": "tsc --noEmit",
"lint": "eslint .",
"postlint": "npm run skeleton:verify",
"posttest": "npm run lint",
"skeleton:apply": "code-skeleton apply",
"skeleton:verify": "code-skeleton verify",
"prepack": "tsc --project tsconfig.build.json && npm run update-shebang",
"update-shebang": "./scripts/update-shebang.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@code4rena/skeleton": "1.1.3",
"@tsconfig/node18": "^18.0.0",
"@types/node": "^18.0.0",
"@types/tap": "^15.0.0",
"@types/yargs": "^17.0.32",
"@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.0.0"
},
"dependencies": {
"ajv": "^8.12.0",
"yargs": "^17.7.2"
},
"skeleton": {
"module": "@code4rena/skeleton",
"variables": {
"library": true
}
},
"//": "This file is partially managed by code-skeleton. Changes may be overwritten.",
"files": [
"bin/**/*.js",
"lib/**/*.js",
"lib/**/*.json",
"lib/**/*.d.ts",
"lib/types/index.d.ts",
"lib/types/index.js",
"!lib/types/**"
],
"tap": {
"coverage": true,
"check-coverage": false,
"ts": true
},
"types": "lib/index.d.ts"
}