-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.08 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.08 KB
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
{
"name": "nbp-adapter-google-datastore",
"version": "0.1.0",
"description": "Google Datastore adapter for Node.js Bot Platform",
"main": "dist/index.js",
"scripts": {
"build": "babel ./src --preset babel-preset-es2015 --out-dir ./dist",
"build:watch": "babel --watch ./src --preset babel-preset-es2015 --out-dir ./dist",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/evilai/nbp-adapter-google-datastore.git"
},
"author": "Maxim Vetrenko <vetrenko.maxim@gmail.com> (https://github.com/maxmert)",
"license": "ISC",
"bugs": {
"url": "https://github.com/evilai/nbp-adapter-google-datastore/issues"
},
"homepage": "https://github.com/evilai/nbp-adapter-google-datastore#readme",
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-core": "^6.22.1",
"babel-loader": "^6.2.5",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"eslint-config-evilai": "^0.0.1"
},
"dependencies": {
"@google-cloud/datastore": "^0.6.1"
}
}