-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 954 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 954 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
34
35
36
37
38
39
40
41
{
"name": "node-micro-service-example",
"version": "1.0.0",
"author": "10Kft",
"contributors": [
{
"name": "Shyam Habarakada",
"email": "shyam@10000ft.com"
}
],
"config": {
"ROOT_DIR": "SuperSuperSecret"
},
"engines": {
"npm": "^3.0.0"
},
"scripts": {
"start": "node_modules/pm2/bin/pm2 start process.yml",
"restart": "node_modules/pm2/bin/pm2 startOrReload process.yml",
"stop": "node_modules/pm2/bin/pm2 delete all",
"test": "node_modules/mocha/bin/mocha --recursive spec/",
"nuke": "scripts/cleanup.sh"
},
"dependencies": {
"assert": "^1.0.0",
"config": "^1.20.1",
"cors": "^2.0.0",
"debug": "^2.0.0",
"express": "^4.0.0",
"js-yaml": "^3.6.1",
"pm2": "^1.1.0",
"promise": "^7.0.0",
"serve-favicon": "^2.0.0",
"underscore": "^1.8.3"
},
"devDependencies": {
"mocha": "^2.4.0",
"should": "^8.0.0",
"supertest": "^1.2.0"
}
}