forked from googlearchive/node-big-rig
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 923 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
{
"name": "bigrig",
"version": "1.3.0",
"description": "A CLI and node module for parsing trace (timeline) files from Chrome.",
"main": "index.js",
"bin": {
"bigrig": "bigrig.js"
},
"engines": {
"node": ">=4.0.0"
},
"dependencies": {
"cli-color": "^1.1.0",
"mkdirp": "^0.5.1",
"yargs": "^3.29.0"
},
"devDependencies": {
"babel-eslint": "^4.1.3",
"chai": "^3.4.0",
"eslint": "^1.8.0",
"mocha": "^2.3.3"
},
"scripts": {
"test": "eslint . && mocha test/*.js --timeout 60000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GoogleChrome/node-big-rig.git"
},
"keywords": [
"chrome",
"trace",
"cli"
],
"author": "Paul Lewis (Google)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/GoogleChrome/node-big-rig/issues"
},
"homepage": "https://github.com/GoogleChrome/node-big-rig#readme"
}