-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 844 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 844 Bytes
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
{
"name": "spike",
"version": "1.0.0",
"description": "",
"main": "server.js",
"author": "Clark Sell",
"license": "MIT",
"xervo": {
"projectName": "HttpServerSpike",
"url": "http://httpserverspike-96691.app.xervo.io"
},
"engines": {
"node": ">=6.5"
},
"dependencies": {
"httpdispatcher": "^2.0.1",
"winston": "^2.3.1"
},
"devDependencies": {
"standard": "^9.0.1",
"tap": "^10.3.0"
},
"scripts": {
"start": "node ./server.js --start",
"pretest": "standard",
"test": "tap tests/**/*.js",
"xervo:push": "xervo deploy ./ -p $npm_package_xervo_projectName && open $npm_package_xervo_url",
"xervo:start": "xervo project start -p $npm_package_xervo_projectName && open $npm_package_xervo_url",
"xervo:stop": "xervo project stop -p $npm_package_xervo_projectName"
}
}