-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
70 lines (70 loc) · 2.03 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
66
67
68
69
70
{
"name": "porchmark",
"version": "2.0.0-beta.9",
"description": "Simple tool to compare browser performance of several sites simultaneously",
"scripts": {
"build": "tsc && npm run updateTscPaths",
"watch": "tsc-watch --onSuccess 'npm run updateTscPaths' --onFailure 'npm run updateTscPaths'",
"updateTscPaths": "tscpaths -p tsconfig.json -s ./src -o ./dist",
"prepare": "npm run build",
"install": "node install.js",
"lint": "tslint --project .",
"ci:check": "npm run build && npm run lint && npm run test",
"test": "jest --no-cache",
"test:watch": "jest --watch --no-cache",
"clean": "rm -rf dist"
},
"bin": "dist/bin/porchmark.js",
"repository": {
"type": "git",
"url": "https://github.com/mutantcornholio/porchmark"
},
"author": "cornholio <[email protected]>",
"license": "ISC",
"dependencies": {
"@hapi/joi": "^16.1.8",
"blessed": "^0.1.81",
"cli-table2": "^0.2.0",
"colors": "^1.3.1",
"commander": "^4.0.1",
"console.table": "^0.10.0",
"cookie": "^0.3.1",
"d3": "^5.16.0",
"fs-extra": "^8.1.0",
"jsdom": "^16.2.2",
"jstat": "^1.9.2",
"lighthouse": "^5.6.0",
"lodash": "^4.17.11",
"porchmark-pretty-reporter": "^0.2.0",
"puppeteer": "^2.0.0",
"source-map-support": "^0.5.16",
"tracer": "^1.0.1",
"webdriverio": "^4.14.0"
},
"devDependencies": {
"@types/blessed": "^0.1.10",
"@types/cli-table2": "^0.2.2",
"@types/d3": "^5.7.2",
"@types/fs-extra": "^8.0.1",
"@types/hapi__joi": "^16.0.3",
"@types/jest": "^25.2.1",
"@types/jsdom": "^16.2.1",
"@types/lodash": "^4.14.117",
"@types/node": "^12.12.6",
"@types/puppeteer": "^2.0.0",
"@types/traverse": "^0.6.32",
"@types/webdriverio": "^4.13.0",
"husky": "^3.1.0",
"jest": "^25.4.0",
"ts-jest": "^25.4.0",
"tsc-watch": "^4.0.0",
"tscpaths": "0.0.9",
"tslint": "^5.20.1",
"typescript": "3.8.3"
},
"husky": {
"hooks": {
"pre-commit": "npm run build && npm run lint && npm run test"
}
}
}