This repository has been archived by the owner on Jun 29, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.92 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
{
"name": "@springworks/request-baker",
"version": "1.0.0",
"description": "Generates example request parameters from a Swagger specification",
"files": [
"build"
],
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"test": "NODE_ENV=test istanbul cover _mocha",
"build": "rm -rf build && babel src --out-dir build --copy-files",
"prepublish": "yarn run build",
"test-no-cov": "NODE_ENV=test mocha",
"test-acceptance": "NODE_ENV=test istanbul cover _mocha -- --fgrep '/acceptance/'",
"test-component": "NODE_ENV=test istanbul cover _mocha -- --fgrep '/component/'",
"test-unit": "NODE_ENV=test istanbul cover _mocha -- --fgrep '/unit/'",
"lint": "eslint --cache .",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/Springworks/node-request-baker"
},
"bugs": "https://github.com/Springworks/node-request-bakery/issues",
"homepage": "https://github.com/Springworks/node-request-bakery#readme",
"author": "Springworks",
"license": "MIT",
"dependencies": {
"@types/swagger-schema-official": "^2.0.6",
"bluebird": "^3.5.0",
"lodash": "^4.17.4",
"swagger-parser": "^3.4.2",
"swagger-schema-official": "^2.0.0-bab6bed"
},
"devDependencies": {
"@springworks/test-harness": "^1.5.6",
"babel-cli": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-plugin-transform-async-to-module-method": "^6.22.0",
"babel-preset-env": "^1.6.0",
"babel-register": "^6.26.0",
"eslint": "^4.4.1",
"eslint-config-springworks": "^7.0.11",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-mocha": "^4.11.0",
"eslint-plugin-should-promised": "^2.0.0",
"eslint-plugin-springworks": "^2.1.0",
"istanbul": "^0.4.5",
"mocha": "^3.5.0",
"semantic-release": "^7.0.2",
"swagger-md": "^2.0.1",
"swagger-tools": "^0.10.1"
}
}