-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.42 KB
/
package.json
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
{
"name": "threatdown",
"version": "1.0.2",
"description": "",
"main": "lib/index.js",
"bin": {
"threatdown": "bin/threatdown.js"
},
"scripts": {
"build:parser": "peggy lib/parser/tree.peggy",
"pretest": "npm run build:parser",
"test": "tap",
"clean": "./scripts/clean.ts",
"prelint": "tsc --noEmit",
"lint": "eslint .",
"postlint": "npm run skeleton:verify",
"posttest": "npm run lint",
"prepack": "tsc --project tsconfig.build.json && npm run build:parser",
"skeleton:apply": "code-skeleton apply",
"skeleton:verify": "code-skeleton verify"
},
"keywords": [],
"author": "Nathan LaFreniere <[email protected]>",
"license": "ISC",
"devDependencies": {
"@code4rena/skeleton": "1.0.6",
"@tsconfig/node18": "^18.0.0",
"@types/mustache": "^4.0.0",
"@types/node": "^18.0.0",
"@types/tap": "^15.0.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.0.0",
"mustache": "^4.2.0",
"peggy": "^3.0.2",
"tap": "^16.0.0",
"ts-node": "^10.0.0",
"typescript": "^5.0.0"
},
"skeleton": {
"module": "@code4rena/skeleton",
"variables": {
"library": "true"
}
},
"tap": {
"coverage": true,
"ts": true
},
"files": [
"bin/**/*.js",
"lib/**/*.js",
"lib/**/*.d.ts",
"!lib/types/**"
],
"dependencies": {
"@mermaid-js/mermaid-cli": "^10.4.0"
}
}