-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1019 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 1019 Bytes
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
{
"name": "@genstackio/sdkgen",
"version": "0.6.0",
"description": "SDK Source Code Generator",
"license": "MIT",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"directories": {
"lib": "lib",
"test": "__tests__"
},
"files": [
"lib",
"resources"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"preversion": "yarn test",
"version": "yarn --silent build && git add -A .",
"postversion": "git push && git push --tags",
"build": "tsc",
"test": "jest --config jest.config.js",
"run-cli": "yarn --silent build && ./bin/sdkgen"
},
"dependencies": {
"debug": "^4.3.2",
"graphql": "^16.2.0",
"yargs": "^17.3.1",
"cross-fetch": "^3.1.4",
"ejs": "^3.1.6",
"yaml": "^1.10.2"
},
"devDependencies": {
"jest": "^27.3.1",
"typescript": "^4.5.2",
"@types/node": "^16.11.9",
"@types/jest": "^27.0.3",
"ts-jest": "^27.0.7",
"cross-fetch": "^3.1.4"
},
"bin": {
"sdkgen": "./bin/sdkgen"
}
}