-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
52 lines (52 loc) · 1.45 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
{
"name": "gstore-api",
"version": "1.1.1",
"description": "gstore-api is a NodeJS Express route builder that help designing RESTful APIs to manage Google Datastore entities.",
"main": "index.js",
"scripts": {
"test": "mocha test --recursive",
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha -- -R spec --recursive",
"coveralls": "istanbul cover _mocha --report lcovonly -- -R spec --recursive && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"engines": {
"node": ">=4.0"
},
"keywords": [
"google datastore",
"google cloud",
"RESTful API",
"data modeling",
"gstore-node",
"node.js"
],
"repository": {
"type": "git",
"url": "https://github.com/sebelga/gstore-api.git"
},
"author": "Sébastien Loix",
"license": "ISC",
"dependencies": {
"arrify": "^1.0.1",
"body-parser": "1.17.1",
"extend": "^3.0.0",
"gstore-node": "1.0.0",
"is": "^3.2.1",
"pluralize": "^4.0.0",
"string": "^3.3.3"
},
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"chai": "^3.5.0",
"coveralls": "^2.11.9",
"eslint": "^3.18.0",
"eslint-config-airbnb-base": "^10.0.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-mocha": "^4.9.0",
"istanbul": "^0.4.3",
"mocha": "^2.4.5",
"mocha-lcov-reporter": "^1.2.0",
"sinon": "^1.17.4",
"sinon-as-promised": "^4.0.3"
}
}