-
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) · 803 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 803 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
32
33
{
"name": "node-microservice",
"version": "0.0.1",
"description": "Sample for node microservice",
"main": "app/index.js",
"scripts": {
"test": "./node_modules/mocha/bin/mocha",
"start": "node app/index.js",
"build": "docker build -t node-microservice ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/jdavanne/node-microservice.git"
},
"keywords": [
"node",
"microservice"
],
"author": "jdavanne@gmail.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/jdavanne/node-microservice/issues"
},
"homepage": "https://github.com/jdavanne/node-microservice#readme",
"dependencies": {
"express": "^4.13.4"
},
"devDependencies": {
"expect": "^1.15.2",
"mocha": "^2.4.5",
"superagent": "^1.8.2"
}
}