forked from devexperts/swagger-codegen-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.26 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
{
"name": "@devexperts/swagger-codegen-ts",
"version": "2.0.0-alpha.17",
"description": "TS generator for swagger spec",
"main": "dist/index.js",
"scripts": {
"ts-node": "ts-node",
"test:lint": "eslint './src/**/*.ts' './test/**/*.ts' --fix",
"test:run": "ts-node ./test/index.ts",
"test:build": "yarn test:run && tsc -p tsconfig.test.json",
"test:unit": "jest",
"test": "yarn test:lint && yarn prettier && yarn test:unit && yarn test:build",
"prettier": "prettier --list-different \"./src/**/*.ts\" \"./test/**/*.ts\"",
"prettier:fix": "prettier --write \"./src/**/*.ts\" \"./test/**/*.ts\"",
"prepublishOnly": "yarn test && yarn build",
"start": "nodemon --exec \"yarn test:run\"",
"build": "tsc -p tsconfig.build.json",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"version": "yarn changelog && git add CHANGELOG.md"
},
"author": "devexperts",
"license": "MPL-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/devexperts/swagger-codegen-ts.git"
},
"bugs": {
"url": "git+https://github.com/devexperts/swagger-codegen-ts/issues"
},
"homepage": "https://github.com/devexperts/swagger-codegen-ts#readme",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@devexperts/utils": "^1.0.0-alpha.10",
"@types/adm-zip": "^0.4.32",
"@types/color": "^3.0.0",
"@types/fs-extra": "^8.0.0",
"@types/prettier": "^1.13.2",
"adm-zip": "^0.4.13",
"color": "^3.1.2",
"eslint-plugin-prettier": "^3.1.1",
"fs-extra": "^8.1.0",
"json-schema-ref-parser": "^7.1.1",
"prettier": "^1.19.1"
},
"devDependencies": {
"@devexperts/lint": "^1.0.0-alpha.10",
"@types/del": "^4.0.0",
"@types/jest": "^24.0.18",
"conventional-changelog-cli": "^2.0.21",
"del": "^5.1.0",
"eslint": "^6.7.2",
"fast-check": "^1.17.0",
"fp-ts": "^2.1.0",
"io-ts": "^2.0.1",
"io-ts-types": "^0.5.1",
"jest": "^24.9.0",
"nodemon": "^1.18.3",
"ts-jest": "^24.1.0",
"ts-node": "^8.4.1",
"typescript": "^3.6.3"
},
"peerDependencies": {
"fp-ts": "^2.1.0",
"io-ts": "^2.0.1",
"io-ts-types": "^0.5.1"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"timers": "fake"
}
}