forked from SunGard-Labs/sg-protractor-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.25 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": "protractor-tools",
"version": "1.0.1",
"description": "Collection of helper functions for protractor e2e test",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "tslint ./lib/**/*.ts -t verbose --exclude ./lib/**/*.d.ts",
"compile": "rimraf ./build && npm run lint && tsc -p tsconfig.json --noUnusedLocals",
"release": "npm run compile && cpy README.md package.json ./build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Nolanus/protractor-tools.git"
},
"author": "Sebastian Fuss",
"license": "MIT",
"bugs": {
"url": "https://github.com/Nolanus/protractor-tools/issues"
},
"homepage": "https://github.com/Nolanus/protractor-tools#readme",
"peerDependencies": {
"protractor": "~5.4.2",
"rxjs": "^6.3.3"
},
"devDependencies": {
"@types/fs-extra": "^5.0.5",
"@types/jasmine": "~3.3.12",
"@types/request": "^2.48.1",
"@types/rx-node": "0.0.5",
"@types/selenium-webdriver": "^3.0.15",
"cpy-cli": "^2.0.0",
"protractor": "~5.4.2",
"rimraf": "^2.6.3",
"rxjs": "^6.3.3",
"tslint": "~5.14.0",
"typescript": "~3.3.4000"
},
"dependencies": {
"fs-extra": "^7.0.1",
"quiche": "^0.3.0"
}
}