forked from mulesoft-labs/raml-object-to-raml
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.32 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
47
48
49
50
{
"name": "raml-object-to-raml",
"version": "0.0.7",
"description": "Takes a RAML object in JavaScript and emits properly-formatted RAML (text).",
"main": "raml-object-to-raml.js",
"scripts": {
"test": "istanbul cover node_modules/mocha/bin/_mocha -- -R spec",
"build": "browserify -e . -s raml-object-to-raml -o dist/raml-object-to-raml.js && uglifyjs dist/raml-object-to-raml.js -o dist/raml-object-to-raml.min.js",
"stage-build": "git add dist"
},
"repository": {
"type": "git",
"url": "git://github.com/mulesoft/raml-object-to-raml.git"
},
"pre-commit": [
"build",
"stage-build",
"test"
],
"bin": {
"raml-object-to-raml": "./bin/raml-object-to-raml.js"
},
"keywords": [
"raml",
"object",
"file",
"text"
],
"author": "MuleSoft, Inc.",
"license": "Apache 2.0",
"bugs": {
"url": "https://github.com/mulesoft/raml-object-to-raml/issues"
},
"homepage": "https://github.com/mulesoft/raml-object-to-raml",
"devDependencies": {
"browserify": "^11.0.1",
"chai": "^3.2.0",
"istanbul": "^0.3.2",
"mocha": "^2.3.0",
"pre-commit": "^1.1.1",
"uglify-js": "^2.4.15"
},
"dependencies": {
"concat-stream": "^1.4.6",
"indent-string": "^2.1.0",
"repeat-string": "^1.5.2",
"string-length": "^1.0.0",
"xtend": "^4.0.0"
}
}