forked from mulesoft-labs/raml-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.48 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
51
52
53
54
55
56
57
{
"name": "raml-generator",
"version": "1.0.0-3",
"description": "Generate files from a RAML document and template functions",
"main": "dist/index.js",
"files": [
"bin.js",
"bin.d.ts",
"annotations.raml",
"dist/",
"custom_typings/",
"typings.json",
"LICENSE"
],
"scripts": {
"lint": "tslint \"src/**/*.ts\"",
"build": "rm -rf dist/ && tsc",
"test-spec": "blue-tape \"src/**/*.spec.ts\" | tap-spec",
"test-cov": "istanbul cover --print none -x \"*.spec.js\" blue-tape \"dist/**/*.spec.js\" | tap-spec",
"test-scene": "node test/index.js",
"test": "npm run lint && npm run build && npm run test-cov && npm run test-scene",
"prepublish": "typings install && npm run build"
},
"repository": {
"type": "git",
"url": "git://github.com/mulesoft-labs/raml-generator.git"
},
"keywords": [
"raml",
"client",
"code",
"generator",
"template"
],
"author": "MuleSoft, Inc.",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/mulesoft-labs/raml-generator/issues"
},
"homepage": "https://github.com/mulesoft-labs/raml-generator",
"devDependencies": {
"blue-tape": "^0.2.0",
"istanbul": "^0.4.2",
"tap-spec": "^4.1.1",
"tslint": "^3.2.0",
"typescript": "^1.8.9",
"typings": "^0.7.9"
},
"dependencies": {
"any-promise": "^1.1.0",
"mkdirp": "^0.5.0",
"parse-json": "^2.2.0",
"raml-1-parser": "^1.1",
"thenify": "^3.2.0",
"yargs": "^4.1.0"
}
}