-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
50 lines (50 loc) · 1.08 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
{
"name": "@condenast/perf-timeline-cli",
"version": "0.1.3",
"description": "Generate Chrome Performance Timelines via a command line interface",
"main": "src/index.js",
"license": "Apache-2.0",
"contributors": [
{
"name": "Zack Tollman",
"url": "https://www.tollmanz.com"
}
],
"scripts": {
"lint": "eslint ./bin ./src ./test",
"test": "NODE_ENV=test jest",
"test:coverage": "jest --coverage"
},
"dependencies": {
"cli-logger": "^0.5.40",
"puppeteer": "^1.2.0",
"yargs": "^13.0.0"
},
"bin": {
"perf-timeline": "./bin/index.js"
},
"engines": {
"node": ">=8.0.0",
"npm": ">=5.6.0"
},
"repository": {
"type": "git",
"url": "https://github.com/CondeNast/perf-timeline-cli.git"
},
"devDependencies": {
"acorn": "6.1.1",
"eslint": "5.15.3",
"eslint-config-airbnb-base": "13.1.0",
"eslint-plugin-import": "2.16.0",
"jest": "24.5.0",
"sinon": "7.3.0"
},
"jest": {
"testEnvironment": "node"
},
"keywords": [
"chrome devtools",
"cli",
"performance timeline"
]
}