This repository has been archived by the owner on Jan 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
60 lines (60 loc) · 1.57 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
58
59
60
{
"name": "raml-generator",
"version": "2.0.1",
"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": "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": "^1.0.0",
"istanbul": "^0.4.2",
"tap-spec": "^4.1.1",
"tslint": "^5.9.1",
"typescript": "^2.8.1"
},
"dependencies": {
"@types/blue-tape": "^0.1.31",
"@types/mkdirp": "^0.5.2",
"@types/node": "^9.6.5",
"@types/parse-json": "^4.0.0",
"@types/yargs": "^11.0.0",
"mkdirp": "^0.5.0",
"parse-json": "^4.0.0",
"raml-1-parser": "^1.1.41",
"thenify": "^3.2.0",
"yargs": "^11.0.0"
}
}