This repository was archived by the owner on Sep 3, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.54 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.54 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
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "@nll/api-codegen-ts",
"version": "0.4.10",
"description": "A generalized api codegen library",
"main": "lib/index.js",
"bin": "lib/bin.js",
"scripts": {
"start": "ts-node ./src/bin.ts",
"clean": "rimraf rm -rf lib/*",
"build": "npm run clean && tsc",
"test": "tsc --noEmit && npm start",
"prepublishOnly": "npm run build",
"release": "npx standard-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nullpub/api-codegen-ts.git"
},
"keywords": [
"typescript",
"codegen"
],
"author": "Brandon Blaylock <brandon@null.pub>",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/nullpub/api-codegen-ts/issues"
},
"homepage": "https://github.com/nullpub/api-codegen-ts#readme",
"peerDependencies": {
"@nll/datum": "^2.6.0",
"@nll/dux": "^7.0.2",
"fp-ts": "^2.0.5",
"io-ts": "^2.0.1"
},
"dependencies": {
"diff": "^4.0.1",
"glob": "^7.1.4",
"io-ts-codegen": "^0.4.1",
"io-ts-reporters": "^1.0.0",
"io-ts-types": "^0.5.0",
"newtype-ts": "^0.3.2",
"prettier": "^1.18.2",
"swagger2openapi": "^5.3.1"
},
"devDependencies": {
"@types/diff": "^4.0.2",
"@types/fs-extra": "^7.0.0",
"@types/glob": "^7.1.1",
"@types/node": "^12.6.8",
"@types/prettier": "^1.16.4",
"@types/rimraf": "^2.0.2",
"rimraf": "^2.6.3",
"standard-version": "^6.0.1",
"typescript": "^3.5.3"
},
"apiCodegen": {
"src": "./local/scripter-spec.json",
"dst": "./local/dest",
"overwrite": false
}
}