-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
93 lines (93 loc) · 3.04 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@etclabscore/jade-service-runner",
"version": "0.0.0-development",
"description": "![](https://www.etclabs.org/dist/resources/images/v2/logo-top.png) Supported by [ETC Labs](https://www.etclabs.org/)",
"main": "build/src/index.js",
"bin": {
"jade-service-runner": "./build/src/cli/index.js"
},
"dependencies": {
"@open-rpc/client-js": "^1.2.3",
"@open-rpc/generator": "^1.18.8",
"@open-rpc/server-js": "^1.8.2",
"@open-rpc/typings": "^1.11.2",
"body-parser": "^1.19.0",
"commander": "^3.0.2",
"connect": "^3.7.0",
"follow-redirects": "^1.7.0",
"fs-extra": "^9.0.1",
"isomorphic-fetch": "^2.2.1",
"lodash": "^4.17.11",
"node-fetch": "^2.6.0",
"request": "^2.88.0",
"rimraf": "^3.0.0",
"strict-event-emitter-types": "^2.0.0",
"tar-fs": "^2.0.0",
"winston": "^3.2.1",
"ws": "^7.1.0",
"yauzl": "^2.10.0"
},
"devDependencies": {
"typedoc": "^0.15.0",
"@types/node": "^12.6.8",
"@types/node-fetch": "^2.3.7",
"@types/ws": "^7.2.7",
"@types/body-parser": "^1.17.0",
"@types/connect": "^3.4.32",
"@types/cors": "^2.8.4",
"@types/fs-extra": "^8.0.0",
"@types/jest": "^24.0.12",
"@types/lodash": "^4.14.132",
"@types/request": "^2.48.1",
"@types/rimraf": "^3.0.0",
"@types/tar-fs": "^2.0.0",
"@types/yauzl": "^2.9.1",
"@types/yazl": "^2.4.1",
"jest": "^24.8.0",
"ts-jest": "^24.0.2",
"tslint": "^6.1.3",
"typescript": "^3.4.5",
"webpack": "^4.37.0",
"webpack-cli": "^4.2.0",
"yazl": "^2.5.1"
},
"scripts": {
"build": "npm run build:typings && npm run build:client && npm run build:code && npm run build:integration && npm run build:docs && chmod +x build/src/cli/index.js",
"build:code": "tsc",
"build:typings": "open-rpc-typings --output-ts src/generated-types",
"build:client": "open-rpc-generator generate -c open-rpc-generator-config.json",
"build:semiclean": "rm -rf build/generated-client/client/rust",
"build:integration": "webpack --config fixtures/webpack.config.js",
"build:docs": "typedoc",
"startaws": "npm run build:code && node build/src/cli/index.js -p 8081",
"start": "npm run build:code && node build/src/cli/index.js -d ~/.services/",
"start:client": "node build/client.js",
"test": "npm run test:lint && npm run test:unit",
"test:debug": "node --inspect node_modules/.bin/jest --runInBand",
"test:lint": "tslint -c tslint.json 'src/**/*.ts' --fix",
"test:unit": "jest --coverage"
},
"engines": {
"node": ">=10.15.0",
"npm": ">=6.9.0"
},
"repository": {
"type": "git",
"url": "https://github.com/etclabscore/jade-service-runner.git"
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/etclabscore/jade-service-runner/issues"
},
"files": [
"build",
"!build/*.test.*",
"!build/generated-client"
],
"homepage": "https://github.com/etclabscore/jade-service-runner#readme",
"optionalDependencies": {
"bufferutil": "^4.0.1",
"utf-8-validate": "^5.0.2"
}
}