-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.53 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.53 KB
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": "protractor-test",
"version": "1.0.0",
"description": "end to end tests",
"main": "protractor.conf.js",
"scripts": {
"debug": "node --inspect-brk ./node_modules/.bin/protractor protractor.conf.js",
"pretest": "npm run tsc && npm run webdriver-update",
"test": "./node_modules/protractor/bin/protractor protractor.conf.js",
"tsc": "tsc",
"webdriver-update": "./node_modules/protractor/bin/webdriver-manager update --standalone --versions.standalone=3.8.0 --chrome --versions.chrome=76.0.3809.68",
"lighthouse": "./node_modules/jest/bin/jest.js --verbose -t=lighthouse",
"lighthouse-reports": "./node_modules/jest/bin/jest.js --verbose -t=lighthouse && node ./lighthouse/db.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BhattcharyaCodes/LighthousePerformanceTest"
},
"author": "Puja Bhattacharya",
"license": "ISC",
"bugs": {
"url": "https://github.com/BhattcharyaCodes/LighthousePerformanceTest/issues"
},
"homepage": "https://github.com/BhattcharyaCodes/LighthousePerformanceTest#readme",
"dependencies": {
"@types/jasmine": "^3.3.12",
"@types/jasminewd2": "^2.0.6",
"@types/node": "^12.7.5",
"jasmine": "^3.3.1",
"lighthouse": "^4.0.0-beta",
"protractor": "^5.4.2",
"protractor-beautiful-reporter": "^1.3.3",
"ts-node": "^8.0.3",
"typescript": "^3.4.1"
},
"devDependencies": {
"@types/selenium-webdriver": "^4.0.0",
"jest": "^23.4.1",
"puppeteer": "^1.6.0",
"csvtojson": "^2.0.8",
"mongodb": "^3.1.13"
}
}