-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.54 KB
/
package.json
File metadata and controls
68 lines (68 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
62
63
64
65
66
67
68
{
"name": "pot-codegen",
"version": "1.0.0",
"description": "",
"main": "code-generator.js",
"dependencies": {
"archiver": "^3.1.1",
"bootstrap": "^4.3.1",
"bootstrap-toggle": "^2.2.2",
"chai": "^4.2.0",
"debug": "^4.1.1",
"ejs": "^2.7.1",
"express": "^4.17.1",
"express-validator": "^6.3.0",
"formidable": "^1.2.1",
"fs-extra": "^8.1.0",
"glob": "^7.1.6",
"growl": "^1.10.5",
"guid": "0.0.12",
"js-yaml": "^3.13.1",
"jshint": "^2.10.3",
"minimatch": "^3.0.4",
"mkdirp": "^0.5.1",
"node-colorify": "^2.0.1",
"raml-1-parser": "^1.1.66",
"raml-parser": "^0.8.18",
"request": "^2.88.0",
"rewire": "^4.0.1",
"shelljs": "^0.8.3",
"sinon": "^7.5.0",
"swagger-parser": "^8.0.1",
"sync-request": "^6.1.0",
"temp-dir": "^2.0.0",
"underscore": "^1.9.1",
"unirest": "^0.6.0",
"webapi-parser": "^0.3.0",
"minimist": "1.2.5"
},
"devDependencies": {
"material-design-icons": "^3.0.1",
"mocha": "^7.1.2",
"mongodb": "^3.4.0",
"standard": "^14.3.1",
"unzipper": "^0.10.5"
},
"scripts": {
"test": "mocha --recursive ./generation/*.spec.js ./validation/*.spec.js ./validation/runners/*.spec.js ./validation/resources/*.spec.js"
},
"author": "",
"license": "ISC",
"standard": {
"ignore": [
"docs/",
"public/",
"doc-generation/"
],
"globals": [
"describe",
"context",
"before",
"beforeEach",
"after",
"afterEach",
"it",
"expect"
]
}
}