This repository has been archived by the owner on Jan 3, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
79 lines (79 loc) · 2.08 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
{
"name": "availity-ekko",
"version": "2.2.1",
"description": "Mock server simulating Availity API rest services",
"main": "./server/index.js",
"scripts": {
"test": "cross-env NODE_ENV=testing mocha --reporter spec --recursive server",
"lint": "eslint ./server",
"coverage": "istanbul --include-all-sources cover ./node_modules/.bin/_mocha -- **/*-spec.js",
"preversion": "npm run lint && npm run test",
"start": "node index.js"
},
"repository": {
"type": "git",
"url": "ssh://[email protected]:Availity/availity-ekko.git"
},
"bugs": {
"url": "https://github.com/Availity/availity-ekko/issues"
},
"keywords": [
"mock",
"api",
"proxy",
"rest",
"availity"
],
"author": "Robert McGuinness <[email protected]> (http://robmcguinness.com/)",
"contributors": [
{
"name": "Robert McGuinness",
"email": "[email protected]"
},
{
"name": "Kasey Powers",
"email": "[email protected]"
},
{
"name": "Danny Noler",
"email": "[email protected]"
}
],
"license": "MIT",
"dependencies": {
"bluebird": "^3.5.0",
"body-parser": "^1.18.2",
"chalk": "^2.1.0",
"compression": "^1.7.0",
"connect-busboy": "0.0.2",
"cors": "^2.8.4",
"errorhandler": "^1.5.0",
"express": "^4.15.5",
"lodash": "^4.17.4",
"method-override": "^2.3.9",
"on-finished": "^2.3.0",
"parent-require": "1.0.0",
"yargs": "^10.0.3"
},
"devDependencies": {
"availity-mock-data": "^1.3.0",
"babel-eslint": "^8.0.1",
"chai": "^4.1.2",
"cross-env": "^5.0.5",
"eslint": "^4.10.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-availity": "^3.0.0-beta.8",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-react": "^7.4.0",
"istanbul": "0.4.5",
"mocha": "^4.0.1",
"superagent": "^3.6.0",
"superagent-bluebird-promise": "^4.2.0"
},
"engines": {
"node": ">=5.0.0"
}
}