-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 970 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
41
42
43
{
"name": "treenee",
"version": "1.3.3",
"description": "A simple decision tree engine",
"main": "index.js",
"scripts": {
"test": "ava",
"start": "nodemon index",
"start-dev": "nodemon index --builder-mode --watch-trees --stable-ids",
"test-dev": "ava -w"
},
"author": "[email protected]",
"license": "MIT",
"dependencies": {
"@hapi/boom": "^7.4.2",
"@hapi/hapi": "^18.4.1",
"@hapi/inert": "^5.2.0",
"@hapi/joi": "^15.0.3",
"@hapi/vision": "^5.5.2",
"@hapi/yar": "^9.2.0",
"ajv": "^6.12.3",
"commander": "^5.1.0",
"comment-json": "^3.0.2",
"flat": "^5.0.0",
"hapi-pino": "^8.0.0",
"hbs": "^4.1.2",
"js-yaml": "^3.14.0",
"lodash": "^4.17.19",
"markdown-it": "^11.0.0",
"mermaid": "^8.5.0"
},
"devDependencies": {
"ava": "^3.10.1",
"nodemon": "^2.0.3"
},
"ava": {
"verbose": true,
"serial": true,
"files": [
"tests/**/*"
]
}
}