-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
65 lines (65 loc) · 1.61 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
60
61
62
63
64
65
{
"name": "flowtrace",
"version": "0.1.10",
"description": "Tracing format tools for FBP",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"flowtrace-show": "./bin/flowtrace-show",
"flowtrace-replay": "./bin/flowtrace-replay"
},
"bugs": {
"url": "https://github.com/flowbased/flowtrace/issues"
},
"author": "Jon Nordby <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/flowbased/flowtrace.git"
},
"dependencies": {
"circular-buffer": "^1.0.2",
"cli-color": "~2.0.0",
"clone": "^2.1.2",
"commander": "^6.1.0",
"debug": "^4.2.0",
"fbp": "^1.7.0",
"fbp-graph": "^0.7.0",
"isomorphic-fetch": "^3.0.0",
"open": "^7.2.1",
"tv4": "^1.2.7",
"websocket": "^1.0.21"
},
"devDependencies": {
"@types/clone": "^2.1.0",
"@types/node": "^14.14.10",
"chai": "^4.0.0",
"eslint": "^7.10.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-chai": "0.0.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-mocha": "^8.0.0",
"fbp-client": "^0.4.3",
"fbp-protocol-healthcheck": "^1.1.0",
"mocha": "^8.1.3",
"noflo-core": "^0.6.1",
"noflo-nodejs": "^0.15.0",
"nyc": "^15.1.0",
"replace": "^1.2.0",
"typescript": "^4.1.2"
},
"scripts": {
"lint": "eslint src spec",
"pretest": "npm run build && npm run lint",
"build": "tsc",
"postbuild": "replace 'node/events' 'events' dist -r",
"test": "nyc mocha spec/*.js"
},
"nyc": {
"include": [
"dist/*.js",
"dist/lib/*.js",
"dist/bin/*.js"
]
}
}