-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 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
{
"name": "jsonapi-store-firebase",
"version": "1.4.1",
"description": "Firebase data store for jsonapi-server.",
"main": "lib/firebaseHandler.js",
"repository": {
"type": "git",
"url": "https://github.com/olivierchatry/jsonapi-store-firebase.git"
},
"keywords": [
"json:api",
"jsonapi",
"persistence",
"store",
"firebase"
],
"author": "Olivier Chatry <olivier.chatry@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/olivierchatry/jsonapi-store-firebase/issues"
},
"homepage": "https://github.com/olivierchatry/jsonapi-store-firebase",
"engines": {
"node": ">=4.5"
},
"dependencies": {
"async": "2.6.0",
"debug": "3.1.0",
"joi": "13.1.2",
"lodash.omitby": "4.6.0",
"firebase-admin": "~5.12.0",
"semver": "5.5.0"
},
"devDependencies": {
"blanket": "1.2.3",
"coveralls": "3.0.0",
"eslint": "4.19.1",
"jsonapi-server": "4.2.0",
"lokka": "1.7.0",
"lokka-transport-http": "1.6.1",
"mocha": "5.0.5",
"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"
]
}
}
}