-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
74 lines (74 loc) · 1.83 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": "openapi-eller",
"version": "0.3.8",
"description": "Generate OpenAPI v3 clients and servers from the command line",
"main": "dist/main.js",
"bin": {
"openapi-eller": "dist/main.js"
},
"scripts": {
"prepublishOnly": "npm run clean && npm run build",
"build": "npm run lint && tsc && npm run copyAssets",
"clean": "rm -rf dist && rm -rf tests-dist",
"copyAssets": "cd src && copyfiles **/*.hbs **/*.yaml **/*.txt ../dist/",
"lint": "tslint -c tslint.json -p tsconfig.json",
"postbuild": "ef-tspm && ./shebang.js dist/main.js",
"test": "ava"
},
"author": "Brendan Molloy <[email protected]>",
"license": "ISC",
"dependencies": {
"commander": "^4.0.1",
"handlebars": "^4.7.6",
"js-yaml": "^3.13.1",
"json-refs": "^3.0.13",
"lodash": "^4.17.15",
"mkdirp": "^0.5.1",
"object-path": "^0.11.4",
"whatwg-url": "^7.1.0",
"winston": "^2.4.4"
},
"devDependencies": {
"@ef-carbon/tspm": "^2.2.5",
"@types/handlebars": "^4.1.0",
"@types/js-yaml": "^3.12.1",
"@types/lodash": "^4.14.149",
"@types/mkdirp": "^0.5.2",
"@types/node": "^12.12.21",
"@types/object-path": "^0.11.0",
"@types/winston": "^2.4.4",
"ava": "^2.4.0",
"copyfiles": "^2.1.1",
"openapi3-ts": "^1.3.0",
"ts-node": "^8.5.4",
"tsconfig-paths": "^3.9.0",
"tslint": "^5.20.1",
"tslint-config-airbnb": "^5.11.2",
"typescript": "^3.7.3"
},
"files": [
"dist/"
],
"keywords": [
"openapi",
"generator",
"api"
],
"repository": {
"type": "git",
"url": "https://github.com/technocreatives/openapi-eller.git"
},
"engines": {
"node": ">=10.0.0"
},
"ava": {
"compileEnhancements": false,
"extensions": [
"ts"
],
"require": [
"ts-node/register",
"tsconfig-paths/register"
]
}
}