forked from open-rpc/generator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.29 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.29 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
{
"name": "@open-rpc/generator-client",
"private": false,
"version": "1.0.34",
"description": "",
"repository": {
"type": "git",
"url": "https://github.com/open-rpc/generator-client.git"
},
"main": "./build/src/index.js",
"bin": {
"open-rpc-generator-client": "./build/src/cli.js"
},
"files": [
"build/**/*",
".node-version"
],
"scripts": {
"start": "./build/src/cli.js",
"test": "npm run test:lint && npm run test:unit",
"test:unit": "jest --coverage",
"test:lint": "tslint -c tslint.json 'src/**/*.ts' --fix",
"build": "tsc && cp -R templates build/. && chmod +x build/src/cli.js",
"watch:build": "tsc --watch",
"watch:test": "jest --watch"
},
"author": "",
"license": "Apache-2.0",
"dependencies": {
"@etclabscore/json-schema-to-types": "^1.10.1",
"@iarna/toml": "2.2.3",
"@open-rpc/typings": "^1.8.0",
"commander": "4.1.0",
"fs-extra": "7.0.1",
"lodash": "4.17.15"
},
"devDependencies": {
"@open-rpc/examples": "^1.3.5",
"@open-rpc/meta-schema": "^1.6.0",
"@open-rpc/schema-utils-js": "^1.12.0",
"@types/fs-extra": "8.0.1",
"@types/jest": "25.1.0",
"@types/lodash": "4.14.149",
"jest": "^25.1.0",
"ts-jest": "25.0.0",
"tslint": "6.0.0",
"typescript": "3.7.5"
}
}