-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1006 Bytes
/
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
{
"name": "datastoreexample",
"version": "1.0.0",
"description": "nodejs datastore example",
"main": "app.js",
"scripts": {
"dev": "node --watch ./bin/www",
"start": "node ./bin/www",
"test": "mocha --reporter spec test/ --exit",
"coverage": "nyc mocha --exit --reporter progress ./test/",
"coverage:report": "nyc report --reporter=lcov --reporter=text",
"report-coverage": "nyc report --reporter=text-lcov > coverage.lcov"
},
"keywords": [
"express",
"datastore"
],
"author": "danizavtz",
"license": "Apache-2.0",
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"dependencies": {
"@google-cloud/datastore": "^6.6.2",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.1",
"express-validator": "^7.0.1"
},
"devDependencies": {
"chai": "^4.4.1",
"mocha": "^10.3.0",
"nyc": "^15.1.0",
"sinon": "^17.0.1",
"supertest": "^6.3.4"
}
}