-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1.02 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
{
"version": "0.1.5",
"name": "nodetsdb-gce",
"description": "Google Cloud implementation of nodetsdb-api's backend interface backed onto the Google Cloud Datastore",
"repository": "https://github.com/eswdd/nodetsdb-gce",
"license": "GPL-3.0-or-later",
"keywords": [
"opentsdb"
],
"devDependencies": {
"assert": "^1.3.0",
"coveralls": "^3.1.1",
"http-server": "^14.1.1",
"istanbul": "^0.4.2",
"mocha": "^10.2.0",
"mocha-steps": "^1.1.0",
"nyc": "^15.1.0",
"protractor": "~7.0.0",
"rewire": "^6.0.0",
"shelljs": "^0.8.5",
"supertest": "^6.0.0",
"tmp": "0.0.28",
"util": "^0.10.3"
},
"scripts": {
"start": "node faketsdb.js",
"test": "mocha --require mocha-steps -R spec test/*",
"test-coverage": "nyc mocha --require mocha-steps -R spec test/*"
},
"dependencies": {
"@google-cloud/datastore": "^6.6.2",
"express": "^4.18.2",
"google-datastore-emulator": "^4.0.0",
"nodetsdb-api": "^0.3.1"
},
"main": "index.js",
"snyk": true
}