-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
40 lines (40 loc) · 943 Bytes
/
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
{
"name": "deciduous",
"version": "0.0.1",
"description": "App that simplifies building decision trees to model adverse scenarios",
"main": "layout.js",
"directories": {
"example": "examples"
},
"type": "module",
"scripts": {
"build": "tsc --strict --lib es2017 --module es2022 layout.ts"
},
"bin": {
"deciduous": "./cli-cjs.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rpetrich/deciduous.git"
},
"keywords": [
"attack",
"decision",
"tree",
"security"
],
"author": "Ryan Petrich <[email protected]> and Kelly Shortridge",
"license": "GPLv2",
"bugs": {
"url": "https://github.com/rpetrich/deciduous/issues"
},
"homepage": "https://github.com/rpetrich/deciduous#readme",
"devDependencies": {
"typescript": "^5.3.3"
},
"dependencies": {
"@hpcc-js/wasm": "^2.15.3",
"js-yaml": "^4.1.0",
"svg2img": "^1.0.0-beta.2"
}
}