forked from cnishina/webdriver-manager-replacement
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.58 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
{
"name": "webdriver-manager-replacement",
"version": "0.1.4",
"description": "not the webdriver-manager cli",
"main": "dist/lib/index.js",
"types": "dist/lib/index.d.ts",
"scripts": {
"http-server": "tsc && node dist/spec/server/http_server.js",
"jasmine": "jasmine",
"prepare": "tsc",
"proxy-server": "tsc && node dist/spec/server/proxy_server.js",
"test": "tsc && npm run test-unit && npm run test-int && npm run test-proxy",
"test-int": "tsc && jasmine JASMINE_CONFIG_PATH=spec/jasmine-int.json",
"test-proxy": "tsc && jasmine JASMINE_CONFIG_PATH=spec/jasmine-proxy.json",
"test-unit": "tsc && jasmine JASMINE_CONFIG_PATH=spec/jasmine-unit.json",
"tsc": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cnishina/webderpy-manager.git"
},
"author": "Craig Nishina <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/cnishina/webderpy-manager/issues"
},
"homepage": "https://github.com/cnishina/webderpy-manager#readme",
"dependencies": {
"adm-zip": "^0.4.11",
"request": "^2.87.0",
"semver": "^5.5.0",
"tar": "^4.4.4",
"xml2js": "^0.4.19"
},
"devDependencies": {
"@types/adm-zip": "^0.4.31",
"@types/http-proxy": "^1.16.2",
"@types/jasmine": "^2.8.8",
"@types/node": "^10.3.3",
"@types/request": "^2.47.0",
"@types/rimraf": "^2.0.2",
"@types/semver": "^5.5.0",
"@types/tar": "^4.0.0",
"@types/xml2js": "^0.4.3",
"http-proxy": "^1.17.0",
"jasmine": "^3.1.0",
"rimraf": "^2.6.2",
"typescript": "^2.9.2"
}
}