-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
43 lines (43 loc) · 1.13 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
{
"name": "nodebuilder",
"version": "1.0.0",
"description": "Build n8n nodes from OpenAPI specs and YAML files",
"main": "index.js",
"scripts": {
"generate": "tsc && node dist/scripts/generate.js",
"dev": "tsc && node dist/scripts/dev.js",
"render": "node dist/scripts/render.js",
"map": "node dist/scripts/map.js",
"clear": "node dist/scripts/clear.js",
"place": "node dist/scripts/place.js"
},
"keywords": [
"n8n"
],
"author": "Iván Ovejero",
"license": "MIT",
"devDependencies": {
"@types/inquirer": "^7.3.1",
"@types/js-yaml": "^4.0.0",
"@types/jsonpath": "^0.2.0",
"@types/node": "^14.14.16",
"@types/pluralize": "0.0.29",
"@types/underscore": "^1.10.24",
"prettier": "^2.2.1",
"typescript": "^4.1.3"
},
"dependencies": {
"@apidevtools/swagger-cli": "^4.0.4",
"axios": "^0.21.1",
"change-case": "^4.1.2",
"hygen": "^6.0.4",
"inquirer": "^8.0.0",
"js-yaml": "^4.0.0",
"jsonpath-plus": "^4.0.0",
"object-treeify": "^1.1.31",
"pluralize": "^8.0.0",
"title-case": "^3.0.3",
"ts-morph": "^9.1.0",
"underscore": "^1.12.0"
}
}