-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.33 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
{
"name": "majera",
"version": "0.2.0",
"description": "MongoDB and jsonschema express rest api",
"main": "index.js",
"scripts": {
"test": "mocha",
"coverage": "istanbul cover _mocha --report html",
"lint": "eslint .",
"travis": "istanbul cover _mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"keywords": [],
"author": "Larix Kortbeek",
"license": "ISC",
"dependencies": {
"body-parser": "^1.15.2",
"debug": "^2.2.0",
"express": "^4.14.0",
"jsonschema": "^1.1.0",
"mongodb": "^2.2.0",
"passport": "^0.3.2",
"passport-http": "^0.3.0"
},
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.11.9",
"eslint": "^3.0.1",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.7.1",
"eslint-plugin-sorting": "^0.3.0",
"istanbul": "^0.4.4",
"mocha": "^3.1.2",
"mocha-lcov-reporter": "^1.2.0",
"supertest": "^3.0.0"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/larixk/majera.git"
},
"bugs": {
"url": "https://github.com/larixk/majera/issues"
},
"homepage": "https://github.com/larixk/majera#readme"
}