-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1 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
{
"name": "@cotype/build-client",
"version": "1.0.13",
"description": "",
"main": "lib/index.js",
"bin": {
"cotype-build-client": "./lib/cli.js"
},
"scripts": {
"build": "tsc",
"generate-demo": "npm run prepare && rm -f demo/Api.ts && ./lib/cli.js ./demo/swagger.json ./demo/Api.ts",
"prepare": "npm run build && chmod +x ./lib/cli.js",
"test": "npm run generate-demo && jest"
},
"author": "Felix Gnass",
"license": "MIT",
"dependencies": {
"@loopback/openapi-v3-types": "^1.2.1",
"find-up": "^4.1.0",
"oazapfts": "^1.4.1",
"pascal-case": "^2.0.1",
"typescript": "^3.5.3"
},
"devDependencies": {
"@types/find-up": "^2.1.1",
"@types/jest": "^24.0.15",
"@types/node": "^12.6.8",
"jest": "^24.8.0",
"ts-jest": "^24.0.2"
},
"jest": {
"testMatch": [
"**/*.test.ts"
],
"moduleFileExtensions": [
"js",
"json",
"node",
"ts",
"d.ts"
],
"transform": {
"\\.ts$": "ts-jest"
}
}
}