-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.03 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
{
"name": "@pheasantplucker/gc-datastore",
"version": "1.0.8",
"description": "A failables wrapper around Google Cloud's Datastore",
"main": "./src/datastore.js",
"scripts": {
"test": "mocha ./src/*.test.js",
"lint": "esw .eslintrc.js src/ lib/ tests/ -w --fix --ignore-pattern !.eslintrc.js",
"deploy": "./deploy.sh",
"main": "./src/datastore.js"
},
"keywords": [
"google",
"cloud",
"datastore",
"failables"
],
"repository": {
"type": "git",
"url": "git+https://github.com/pheasantplucker/gc-datastore.git"
},
"author": "[email protected]",
"license": "ISC",
"devDependencies": {
"eslint": "^4.17.0",
"eslint-plugin-jest": "^21.9.0",
"eslint-plugin-prettier": "^2.6.0",
"eslint-watch": "^3.1.3",
"prettier": "^1.7.4"
},
"dependencies": {
"@google-cloud/datastore": "^1.4.1",
"@pheasantplucker/failables": "^2.0.4",
"fs-extra": "^6.0.1",
"lodash.difference": "^4.5.0",
"mocha": "^5.1.1",
"ramda": "^0.25.0",
"uuid": "^3.2.1"
}
}