forked from mulesoft-labs/api-console-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1 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
{
"name": "api-console-cli",
"version": "0.2.6",
"description": "A set of dev tools for API console",
"main": "main.js",
"scripts": {
"test": "mocha 'test/*.test.js' --reporter spec"
},
"engines": {
"node": ">=6.4.0"
},
"keywords": [
"API Console",
"tools",
"builder"
],
"authors": [
"Pawel Psztyc <[email protected]>",
"The Advanced REST Client team"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git://github.com/mulesoft-labs/api-console-cli.git"
},
"dependencies": {
"api-console-builder": "^0.4.3",
"api-console-dev-preview": "^0.1.0",
"colors": "^1.1.2",
"commander": "^2.11.0",
"del": "^2.2.2",
"glob": "^7.1.2",
"polyserve": "^0.19.1",
"raml-json-enhance-node": "^0.2.6",
"semver": "^5.3.0",
"update-notifier": "^1.0.0"
},
"devDependencies": {
"chai": "^3.5.0",
"fs-extra": "^4.0.2",
"mocha": "^3.2.0"
},
"bin": {
"api-console": "bin/api-console-cli.js"
}
}