-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
43 lines (43 loc) · 1.09 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
{
"name": "speedline",
"version": "1.4.3",
"description": "Get the speed index from chrome dev tool timeline files. The CLI",
"license": "MIT",
"repository": "paulirish/speedline",
"bin": "cli.js",
"main": "core/lib",
"engines": {
"node": ">=8.0"
},
"types": "core/speedline.d.ts",
"scripts": {
"lint": "xo",
"test:core": "cd core && yarn run test",
"test": "yarn run lint && yarn run test:core",
"install-all": "yarn install && cd core && yarn install",
"install-all:ci": "yarn install --frozen-lockfile --network-timeout 1000000 && cd core && yarn install --frozen-lockfile --network-timeout 1000000"
},
"keywords": [
"chrome",
"devtools",
"timeline",
"speed",
"index",
"performance"
],
"dependencies": {
"@types/node": "*",
"babar": "0.2.2",
"image-ssim": "^0.2.0",
"jpeg-js": "^0.4.1",
"loud-rejection": "^1.6.0",
"meow": "^3.7.0"
},
"devDependencies": {
"@types/jpeg-js": "^0.3.0",
"@types/loud-rejection": "^1.6.0",
"@types/meow": "^4.0.1",
"typescript": "3.0.3",
"xo": "^0.14.0"
}
}