-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.53 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": "services-healthcheck",
"version": "0.3.6",
"description": "Middleware to check if the service dependencies are up",
"main": "lib/index.js",
"scripts": {
"build": "cross-env NODE_ENV=production babel --source-maps --out-dir=lib/ src/",
"dev": "cross-env NODE_ENV=development babel --watch --source-maps --out-dir=lib/ src/",
"clean": "rimraf lib dist coverage",
"prepublish": "run-s clean build",
"removeSkip": "sed -i.bak 's/.skip//' test/*",
"pretest": "npm run build",
"lint": "eslint .",
"test": "eslint . && ava test/*.spec.js --verbose"
},
"dependencies": {
"amqp": "^0.2.6",
"axios": "^0.16.2",
"babel-runtime": "^6.26.0"
},
"devDependencies": {
"ava": "^0.19.1",
"ava-spec": "^1.1.0",
"axios-mock-adapter": "^1.9.0",
"babel-cli": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"cross-env": "^4.0.0",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.3.1",
"eslint-plugin-import": "^2.7.0",
"express": "^4.15.4",
"knex": "^0.13.0",
"mock-knex": "^0.3.9",
"mysql": "^2.14.1",
"npm-run-all": "^4.0.2",
"rimraf": "^2.6.1",
"supertest": "^3.0.0"
},
"repository": "martini97/services-healthcheck",
"keywords": [
"healthcheck",
"axios",
"services",
"amqp",
"middleware",
"express"
],
"license": "MIT",
"engines": {
"node": ">=4"
},
"files": [
"*.md",
"LICENSE",
"lib",
"src"
]
}