-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.28 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
{
"name": "protractor-smartrunner",
"version": "1.1.0",
"scripts": {
"postinstall": "ngcc && webdriver-manager update --gecko=false --versions.chrome=$npm_package_config_chromeDriver",
"ng": "ng",
"start": "ng serve",
"ci": "lite-server --baseDir='./dist/testapp' -c ./lite-server.config.json >/dev/null & (npm run e2e:exclusion && npm run e2e:empty-exclusion)",
"build": "ng build",
"test": "jest",
"lint": "ng lint",
"pree2e": "npm run build:plugin",
"e2e:exclusion": "GIT_HASH=`git rev-parse HEAD` protractor ./e2e/case-with-exclusion/protractor.conf.ts",
"e2e:empty-exclusion": "GIT_HASH=`git rev-parse HEAD` protractor ./e2e/case-with-empty-exclusion/protractor.conf.ts",
"e2e": "npm run e2e:exclusion && npm run e2e:empty-exclusion",
"ng-e2e": "GIT_HASH=`git rev-parse HEAD` ng e2e --configuration=dev-server",
"build:plugin": "tsc --project ./src/smartrunner"
},
"config": {
"chromeDriver": "78.0.3904.70"
},
"dependencies": {
"chalk": "^4.1.0",
"filenamify": "^4.2.0",
"fs-extra": "^8.1.0",
"tslib": "^2.0.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.1100.7",
"@angular/animations": "~11.0.9",
"@angular/cli": "~11.0.7",
"@angular/common": "~11.0.9",
"@angular/compiler": "~11.0.9",
"@angular/compiler-cli": "~11.0.9",
"@angular/core": "~11.0.9",
"@angular/forms": "~11.0.9",
"@angular/language-service": "~11.0.9",
"@angular/platform-browser": "~11.0.9",
"@angular/platform-browser-dynamic": "~11.0.9",
"@angular/router": "~11.0.9",
"@types/jasmine": "~3.6.0",
"@types/jasminewd2": "~2.0.3",
"@types/jest": "^24.0.18",
"@types/node": "^12.11.1",
"codelyzer": "^6.0.0",
"jasmine": "~3.6.4",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "^6.0.0",
"jest": "^24.9.0",
"karma": "~5.1.1",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"lite-server": "^2.5.4",
"protractor": "~7.0.0",
"protractor-retry": "^1.2.9",
"puppeteer": "1.20.0",
"rxjs": "~6.6.3",
"ts-jest": "^24.3.0",
"ts-node": "^7.0.1",
"tslint": "~6.1.0",
"typescript": "4.0.7",
"zone.js": "~0.10.2"
}
}