This repository was archived by the owner on Jan 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.41 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.41 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
{
"name": "raml-client-generator",
"version": "0.1.1",
"description": "Template-driven generator of clients for APIs described by RAML",
"main": "raml-client-generator.js",
"files": [
"raml-client-generator.js",
"bin/",
"LICENSE"
],
"scripts": {
"lint": "standard",
"test": "npm run lint",
"build": "browserify . -g brfs -s ramlClientGenerator -o dist/raml-client-generator.js && uglifyjs dist/raml-client-generator.js -o dist/raml-client-generator.min.js",
"stage-build": "git add dist"
},
"pre-commit": [
"build",
"stage-build",
"test"
],
"standard": {
"ignore": [
"coverage/",
"node_modules/",
"bower_components/",
"dist/"
]
},
"repository": {
"type": "git",
"url": "git://github.com/mulesoft/raml-client-generator.git"
},
"bin": {
"raml-to-client": "bin/raml-client.js"
},
"keywords": [
"raml",
"client",
"generator",
"javascript"
],
"author": "MuleSoft, Inc.",
"license": "Apache 2.0",
"bugs": {
"url": "https://github.com/mulesoft/raml-client-generator/issues"
},
"homepage": "https://github.com/mulesoft/raml-client-generator",
"devDependencies": {
"brfs": "^1.4.0",
"browserify": "^13.0.0",
"pre-commit": "^1.0.4",
"standard": "^6.0.5"
},
"dependencies": {
"raml-generator": "^0.1.3",
"raml-javascript-generator": "0.1.2",
"yargs": "^4.1.0"
}
}