forked from mustafar/parrot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.19 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
{
"name": "parrot",
"repository": "github:mustafar/parrot",
"version": "4.0.0",
"description": "api mocks",
"main": "index.js",
"scripts": {
"build": "rm -rf dist/* && babel index.js --ignore=*/__tests__/* --out-dir=dist && cp package.json dist/ && cp Dockerfile dist/ && cd dist && npm install --only=production",
"lint": "eslint *.js --cache",
"precommit": "npm run lint",
"test:setup": "sh __tests__/setup.sh",
"test": "jest"
},
"keywords": [
"docker",
"mock",
"api",
"testing",
"integration",
"parrot"
],
"author": "Mustafa Rizvi",
"license": "MIT",
"jest": {
"testURL": "http://localhost/"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"eslint": "^4.18.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.9.0",
"husky": "^0.14.3",
"jest": "^22.4.4",
"node-fetch": "^2.0.0"
},
"dependencies": {
"body-parser": "^1.18.2",
"express": "^4.16.2",
"express-interceptor": "^1.2.0",
"http-status-codes": "^1.3.2",
"jsum": "^0.1.4",
"lodash": "^4.17.11",
"querystring": "^0.2.0",
"swagger-express-middleware": "^2.0.1"
}
}