-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.97 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.97 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
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
71
72
73
{
"name": "cog-web-selenium",
"version": "0.1.0",
"description": "Browser Selenium Cog for use with Crank",
"license": "MIT",
"cog": {
"name": "stackmoxie/web-selenium",
"label": "Browser Selenium",
"homepage": "",
"authHelpUrl": ""
},
"scripts": {
"build-docker": "docker build -t stackmoxie/web-selenium:$npm_package_version -t stackmoxie/web-selenium:latest .",
"build-proto": "scripts/build-proto.sh",
"build-ts": "tsc",
"lint": "tslint -c tslint.json -p tsconfig.json",
"start": "check-engine package.json && ts-node src/core/grpc-server.ts",
"test": "nyc mocha -r ts-node/register test/*.ts test/**/*.ts test/**/**/*.ts",
"version": "crank cog:readme stackmoxie/web-selenium && git add README.md"
},
"nyc": {
"extension": [
".ts"
],
"exclude": [
"**/*.d.ts",
"test/**/*.ts",
"**/*.js",
"src/core/grpc-server.ts"
],
"reporter": [
"html",
"text"
],
"all": true
},
"engines": {
"node": ">= 10.0.0"
},
"devDependencies": {
"@types/bluebird": "^3.5.27",
"@types/chai": "^4.1.7",
"@types/chai-as-promised": "7.1.1",
"@types/google-protobuf": "^3.2.7",
"@types/mocha": "^5.2.7",
"@types/needle": "^2.0.4",
"@types/node": "^12.0.4",
"@types/puppeteer": "^1.12.4",
"@types/selenium-webdriver": "^4.1.5",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"check-engine": "^1.8.1",
"grpc-tools": "^1.9.0",
"grpc_tools_node_protoc_ts": "^2.5.1",
"mocha": "^8.0.1",
"nyc": "^14.1.1",
"sinon-chai": "^3.3.0",
"ts-sinon": "^1.0.17",
"tslint": "^5.20.0",
"tslint-config-airbnb": "^5.11.1",
"typescript": "^4.2.4"
},
"dependencies": {
"@azure/identity": "^2.1.0",
"@azure/storage-blob": "^12.11.0",
"@run-crank/utilities": "^0.5.2",
"bluebird": "^3.5.5",
"google-protobuf": "^3.8.0",
"grpc": "^1.24.11",
"selenium-webdriver": "^4.5.0",
"ts-node": "^8.3.0"
}
}