-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
67 lines (67 loc) · 2.05 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
{
"name": "jsonapi-store-mongodb",
"version": "2.0.0",
"description": "MongoDB data store for jsonapi-server.",
"main": "lib/mongoHandler.js",
"repository": {
"type": "git",
"url": "https://github.com/holidayextras/jsonapi-store-mongodb.git"
},
"keywords": [
"json:api",
"jsonapi",
"persistence",
"store",
"mongodb",
"mongo"
],
"author": "Pedro Romano <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/holidayextras/jsonapi-store-mongodb/issues"
},
"homepage": "https://github.com/holidayextras/jsonapi-store-mongodb",
"engines": {
"node": ">=4.5"
},
"dependencies": {
"async": "2.5.0",
"debug": "3.0.1",
"joi": "11.1.1",
"lodash.omitby": "4.6.0",
"mongodb": "2.2.31",
"semver": "5.4.1"
},
"devDependencies": {
"blanket": "1.2.3",
"coveralls": "2.13.1",
"eslint": "4.7.2",
"jsonapi-server": "3.2.1",
"lokka": "1.7.0",
"lokka-transport-http": "1.6.1",
"mocha": "3.5.3",
"mocha-lcov-reporter": "1.3.0",
"mocha-performance": "0.1.1",
"plato": "1.7.0",
"v8-profiler": "5.7.0"
},
"scripts": {
"test": "./node_modules/mocha/bin/mocha --timeout 20000 -R spec ./test/*.js",
"start": "node example/server.js",
"coveralls": "./node_modules/mocha/bin/mocha --timeout 20000 --require blanket --reporter mocha-lcov-reporter ./test/*.js | ./node_modules/coveralls/bin/coveralls.js",
"coverage": "./node_modules/mocha/bin/mocha --timeout 20000 --require blanket --reporter html-cov ./test/*.js > coverage.html",
"complexity": "./node_modules/plato/bin/plato -r -d complexity lib",
"performance": "node --allow-natives-syntax --harmony ./node_modules/mocha/bin/_mocha --reporter mocha-performance ./test/*.js",
"lint": "./node_modules/.bin/eslint ./example/*.js ./lib/* ./test/*.js --quiet && echo '✔ All good!'",
"ci": "npm run lint && npm run test"
},
"config": {
"blanket": {
"pattern": ".js",
"data-cover-never": [
"node_modules",
"test"
]
}
}
}