This repository has been archived by the owner on Jan 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
98 lines (98 loc) · 3.03 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "raml-javascript-generator",
"version": "2.1.3",
"description": "Generate a JavaScript API client from RAML",
"main": "dist/index.js",
"config": {
"commitizen": {
"path": "@commitlint/prompt"
}
},
"files": [
"dist/",
"LICENSE"
],
"bin": {
"raml-javascript-generator": "dist/bin.js"
},
"scripts": {
"commit": "git-cz",
"commitmsg": "validate-commit-msg",
"lint:ts": "tslint './src/**/*.ts'",
"lint:js": "eslint './test/**/*.js'",
"lint:generated": "eslint './test/.tmp/example/*.js'",
"lint": " npm run lint:ts && npm run lint:js",
"build": "rm -rf dist/ && tsc",
"postversion": "git push origin HEAD && git push origin $(git describe --tags) && npm publish",
"preversion": "npm run build",
"generate-client": "node dist/bin.js test/support/fixtures/example.raml -o test/.tmp/example && cd test/.tmp/example && npm install",
"test-browser": "karma start",
"test-server-open": "node test/support/server.js & echo $! > test.pid",
"test-server-close": "if [ -f test.pid ]; then kill -9 $(cat test.pid); rm test.pid; fi",
"test": "npm run lint && npm run build && npm run generate-client && npm run lint:generated && npm run test-server-open && npm run test-browser",
"pretest": "npm run test-server-close",
"posttest": "npm run test-server-close"
},
"repository": {
"type": "git",
"url": "git://github.com/mulesoft-labs/raml-javascript-generator"
},
"keywords": [
"raml",
"client",
"api",
"javascript",
"interface"
],
"author": "MuleSoft, Inc.",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/mulesoft-labs/raml-javascript-generator/issues"
},
"homepage": "https://github.com/mulesoft-labs/raml-javascript-generator",
"devDependencies": {
"@commitlint/cli": "^7.5.2",
"@commitlint/config-angular": "^7.5.0",
"@commitlint/prompt": "^7.5.0",
"browserify": "^16.2.3",
"browserify-istanbul": "^3.0.1",
"chai": "^4.2.0",
"commitizen": "^2.10.1",
"envify": "^4.1.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.16.0",
"express": "^4.16.4",
"husky": "^0.14.3",
"istanbul": "^1.0.0-alpha.2",
"karma": "^2.0.5",
"karma-browserify": "^5.3.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.2",
"karma-istanbul": "0.0.2",
"karma-mocha": "^1.3.0",
"methods": "^1.1.2",
"mocha": "^5.2.0",
"nock": "^9.6.1",
"sinon": "^6.3.5",
"tslint": "^5.15.0",
"tslint-config-airbnb": "^5.11.1",
"typescript": "^2.9.2",
"validate-commit-msg": "^2.14.0",
"watchify": "^3.11.1"
},
"dependencies": {
"@types/node": "^10.14.4",
"@types/uppercamelcase": "^3.0.0",
"@types/xtend": "^4.0.2",
"camel-case": "^3.0.0",
"javascript-stringify": "^1.0.2",
"param-case": "^2.1.1",
"pascal-case": "^2.0.1",
"raml-generator": "2.0.1",
"strands": "^1.0.1",
"uniqueid": "^1.0.0",
"uppercamelcase": "^3.0.0",
"xtend": "^4.0.1"
}
}