-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.64 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.64 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
61
62
{
"name": "http-bat",
"author": {
"name": "Agustin Mendez @ Mulesoft, Inc.",
"email": "agustin.mendez@mulesoft.com",
"url": "https://www.mulesoft.com"
},
"license": "MIT",
"version": "1.0.6",
"dependencies": {
"es6-promise": "^3.2.1",
"expect": "^1.18.0",
"glob": "^7.0.3",
"js-yaml": "3.6.0",
"jsonschema": "^1.1.0",
"lodash": "^4.11.1",
"methods": "^1.1.2",
"mocha": "^2.4.5",
"raml-1-parser": "^0.2.25",
"raml-path-match": "^2.0.0",
"supertest": "1.2.0",
"url": "^0.11.0",
"yargs": "^4.7.0"
},
"devDependencies": {
"body-parser": "^1.15.0",
"connect-busboy": "0.0.2",
"coveralls": "^2.11.9",
"express": "4.13.4",
"istanbul": "^0.4.3",
"mocha-lcov-reporter": "^1.2.0",
"querystring": "0.2.0",
"tslint": "^3.10.2"
},
"scripts": {
"test": "mocha --reporter spec",
"coverage": "(`npm bin`/istanbul cover `npm bin`/_mocha -- -R mocha-lcov-reporter || true)",
"test-travis": "npm run lint && npm run build && npm run coverage && npm run test && node bin/http-bat.js test/cli.spec.yml",
"preversion": "npm test",
"version": "echo VERSION",
"postversion": "git push && git push --tags",
"lint": "`npm bin`/tslint -t msbuild lib/**/*.ts",
"build": "`npm bin`/tsc -p tsconfig.json"
},
"repository": {
"url": "https://github.com/mulesoft-labs/http-bat",
"type": "git"
},
"files": [
"lib/ATL.js",
"lib/ATLHelpers.js",
"lib/Coverage.js",
"lib/bat.js",
"lib/Pointer.js",
"bin/http-bat.js",
"lib/RAMLCoverageReporter.js"
],
"main": "lib/bat.js",
"bin": {
"http-bat": "bin/http-bat.js"
}
}