-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 758 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 758 Bytes
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
{
"name": "wattle",
"version": "0.8.3",
"description": "Hierarchical test runner",
"main": "lib/index",
"types": "lib/index",
"author": "Simon Oxtoby",
"license": "MIT",
"bin": {
"wattle": "./lib/cmd.js"
},
"scripts": {
"prepare": "tsc",
"test": "node ./lib/cmd.js",
"watch": "tsc -w"
},
"files": [
"lib"
],
"devDependencies": {
"@types/node": "*",
"@types/sinon-chai": "*",
"@types/yargs": ">=16.0.1 <18",
"chai": "*",
"mock-promises": "*",
"sinon": "*",
"sinon-chai": "*",
"typescript": "*"
},
"dependencies": {
"chalk": "^4",
"chokidar": "^3",
"fast-glob": "^3",
"log-update": "^4",
"node-trx": ">=0.9",
"ts-node": ">=9",
"yargs": "^17"
}
}