forked from open-rpc/generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.74 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
{
"name": "@open-rpc/generator",
"private": false,
"version": "1.0.34",
"description": "",
"repository": {
"type": "git",
"url": "https://github.com/open-rpc/generator.git"
},
"main": "./build/index.js",
"bin": {
"open-rpc-generator": "build/cli.js"
},
"files": [
"build/**/*",
"templates/**/*",
".node-version"
],
"scripts": {
"start": "npm run build && ./build/cli.js",
"test": "npm run test:lint && npm run test:unit && npm run test:integration",
"test:unit": "jest --coverage",
"test:integration": "npm run build && ./build/cli.js generate -c test-generator-config.json && ((cd ./generated/server/typescript/ && npm install && npm start) & (cd ./generated/client/typescript && npm install && npm run build && cd - && sleep 15 && node ./integration-test.js))",
"test:lint": "tslint -c tslint.json 'src/**/*.ts' --fix",
"build": "npm run build:clean && tsc && chmod +x build/cli.js",
"build:clean": "rm -rf build",
"watch:build": "tsc --watch",
"watch:test": "jest --watch"
},
"author": "",
"license": "Apache-2.0",
"dependencies": {
"@iarna/toml": "^2.2.5",
"@open-rpc/typings": "1.12.1",
"commander": "^7.2.0",
"fs-extra": "^10.0.0",
"inquirer": "^8.0.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"@open-rpc/examples": "1.6.1",
"@open-rpc/meta-schema": "1.14.2",
"@open-rpc/schema-utils-js": "1.15.0",
"@open-rpc/server-js": "1.9.0",
"@types/connect": "^3.4.33",
"@types/cors": "^2.8.6",
"@types/fs-extra": "^9.0.1",
"@types/inquirer": "^7.3.0",
"@types/jest": "^26.0.22",
"@types/lodash": "^4.14.158",
"jest": "^26.2.1",
"ts-jest": "^26.1.4",
"tslint": "^6.1.2",
"typescript": "^4.0.2"
}
}