forked from GoogleCloudPlatform/nodejs-docs-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 897 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
{
"name": "appengine-kraken",
"description": "An example of running Kraken.js on Google App Engine.",
"version": "0.0.1",
"private": true,
"license": "Apache Version 2.0",
"author": "Google Inc.",
"engines": {
"node": "~4.2"
},
"scripts": {
"test": "node_modules/grunt-cli/bin/grunt test",
"build": "node_modules/grunt-cli/bin/grunt build",
"all": "npm run build && npm run test",
"start": "node server.js",
"deploy": "gcloud app deploy"
},
"dependencies": {
"construx": "^1.0.0",
"construx-copier": "^1.0.0",
"express": "^4.13.4",
"grunt": "^0.4.5",
"grunt-cli": "^0.1.13",
"grunt-config-dir": "^0.3.2",
"grunt-contrib-clean": "^0.7.0",
"grunt-contrib-jshint": "^0.12.0",
"grunt-copy-to": "0.0.12",
"grunt-mocha-cli": "^2.0.0",
"kraken-js": "^2.1.0",
"mocha": "^2.4.5",
"supertest": "^1.1.0"
}
}