forked from sichvoge/api-designer-fs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.05 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.05 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
{
"name": "@jsware/raml-editor",
"version": "1.0.1",
"description": "This is a version of MuleSoft's API designer that interacts directly with your filesystem. Forked from sichvoge/api-designer-fs",
"scripts": {
"start": "node raml-editor.js examples",
"test": "echo \"Error: no test specified\" && exit 1",
"version": "auto-changelog -p && git add CHANGELOG.md"
},
"main": "raml-editor.js",
"keywords": [
"raml",
"api",
"designer",
"editor"
],
"bin": {
"raml-editor": "raml-editor.js"
},
"files": [
"LICENSE",
"CHANGELOG.md",
"./raml-editor.js",
"html/**",
"lib/**"
],
"dependencies": {
"api-designer": "^0.4.1",
"bluebird": "^3.4.1",
"body-parser": "^1.15.2",
"commander": "^2.9.0",
"express": "^4.14.0",
"mkdirp": "^0.5.1",
"rimraf": "^2.5.4"
},
"repository": {
"type": "git",
"url": "git://github.com/jsware/raml-editor"
},
"author": "John Scott",
"license": "MIT",
"preferGlobal": true,
"devDependencies": {
"auto-changelog": "^2.3.0"
}
}