forked from node-red/node-red-nodegen
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 1.81 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 1.81 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "node-red-nodegen",
"version": "0.1.1",
"description": "Node generator for Node-RED",
"homepage": "http://nodered.org",
"main": "./lib/nodegen.js",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/node-red/node-red-nodegen.git"
},
"engines": {
"node": ">=10"
},
"contributors": [
"Kazuhito Yokoi",
"Razvan Bordeanu",
"Hiroki Uchikawa",
"Yuki Naganuma",
"Hiroshi Nasu",
"Jana Backhus",
"Kunihiko Toumura",
"Yu Nakata",
"Yuma Matsuura",
"Katsuya Hoshii",
"Qi Xiu",
"Masae Okada",
"Takaya Ide",
"Kazuki Nakanishi",
"Hideki Nakamura",
"Hiroyasu Nishiyama",
"Nick O'Leary",
"Dave Conway-Jones"
],
"keywords": [
"nodegen",
"function",
"swagger",
"codegen",
"swagger-codegen",
"wot",
"web of things"
],
"dependencies": {
"ajv": "6.12.6",
"api-spec-converter": "2.12.0",
"axios": "0.21.1",
"colors": "1.4.0",
"crypto-js": "4.0.0",
"csv-string": "4.0.1",
"javascript-obfuscator": "1.12.1",
"jimp": "0.16.1",
"js-string-escape": "1.0.1",
"minimist": "1.2.5",
"mustache": "4.1.0",
"swagger-js-codegen-formdata": "0.15.5",
"yamljs": "0.3.0"
},
"devDependencies": {
"del": "6.0.0",
"grunt": "1.3.0",
"grunt-shell": "3.0.1",
"grunt-simple-mocha": "0.4.1",
"nyc": "15.1.0",
"node-red": "1.2.9",
"node-red-node-test-helper": "0.2.7",
"q": "1.5.1",
"should": "13.2.3",
"sinon": "10.0.0",
"supertest": "6.1.3"
},
"bin": {
"node-red-nodegen": "bin/node-red-nodegen.js"
},
"scripts": {
"test": "grunt"
},
"bugs": {
"url": "https://github.com/node-red/node-red-nodegen/issues"
},
"directories": {
"doc": "docs",
"lib": "lib",
"test": "test"
}
}