-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.06 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
{
"name": "feathers-datastore",
"version": "1.0.0",
"description": "Google Cloud Dastore adapter for feathersjs",
"main": "lib/index.js",
"scripts": {
"mocha": "mocha --opts mocha.opts",
"test": "npm run mocha",
"compile": "rimraf lib/ && babel -d lib/ src/",
"watch": "babel --watch -d lib/ src/"
},
"engines": {
"node": "~6.9.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/whollacsek/feathers-datastore.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/whollacsek/feathers-datastore/issues"
},
"homepage": "https://github.com/whollacsek/feathers-datastore#readme",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-env": "^1.3.3",
"babel-preset-stage-3": "^6.24.1",
"chai": "^3.5.0",
"feathers": "^2.1.1",
"feathers-service-tests": "^0.9.3",
"mocha": "^3.2.0",
"rimraf": "^2.6.1"
},
"dependencies": {
"@google-cloud/datastore": "^0.8.0",
"arrify": "^1.0.1",
"feathers-errors": "^2.6.3"
}
}