-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
46 lines (46 loc) · 1.13 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
{
"name": "timeliner",
"version": "2.2.1",
"description": "Automated Browser Timeline Analyser",
"main": "index.js",
"bin": "bin/timeliner",
"scripts": {
"test:lint": "semistandard && semistandard bin/timeliner",
"test:unit": "mocha test --recursive",
"test": "npm run test:lint && npm run test:unit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lennym/timeliner.git"
},
"author": "Leonard Martin <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/lennym/timeliner/issues"
},
"homepage": "https://github.com/lennym/timeliner#readme",
"dependencies": {
"JSONStream": "^1.2.1",
"@cubelets/babar": "0.0.4",
"bluebird": "^3.4.6",
"chalk": "^1.1.3",
"chromedriver": "^2.24.1",
"cli-progress": "^1.2.0",
"cli-table": "^0.3.1",
"lodash.mapvalues": "^4.6.0",
"lodash.union": "^4.6.0",
"minimist": "^1.2.0",
"statistics": "^3.3.0",
"ttest": "^1.1.0",
"wd": "^1.0.0"
},
"devDependencies": {
"mocha": "^3.2.0",
"semistandard": "^9.1.0"
},
"semistandard": {
"ignore": [
"test"
]
}
}