-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.55 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "mostly-env",
"version": "1.1.1",
"description": "Mostly microservice runtime environment module",
"author": {
"name": "mostly",
"email": "hello@playingio.com",
"url": "https://mostlyjs.github.com"
},
"license": "MIT",
"main": "index.js",
"scripts": {
"publish": "git push origin --tags && git push origin",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"lint": "eslint-if-supported semistandard --fix",
"mocha": "mocha --opts mocha.opts",
"coverage": "istanbul cover node_modules/mocha/bin/_mocha -- --opts mocha.opts",
"test": "npm run lint && npm run coverage"
},
"homepage": "https://github.com/MostlyJS/mostly-env#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/MostlyJS/mostly-env.git"
},
"bugs": {
"url": "https://github.com/MostlyJS/mostly-env/issues"
},
"dependencies": {
"debug": "^2.6.6",
"heapdump": "^0.3.9",
"hjson": "^2.4.3",
"lodash": "^4.17.4",
"mixpanel": "^0.7.0",
"mongodb-arbiter-discovery": "^0.1.2",
"mongodb-datadog-stats": "^0.1.2",
"nconf": "^0.8.4",
"node-statsd": "^0.1.1",
"redis": "^2.7.1",
"response-time": "^2.3.2",
"shutdown": "^0.3.0",
"winston": "^2.3.1",
"winston-udp": "^0.0.7"
},
"devDependencies": {
"babel-eslint": "^8.2.2",
"eslint-if-supported": "^1.0.1",
"eslint-plugin-promise": "^3.5.0",
"istanbul": "^0.4.5",
"mocha": "^3.3.0"
}
}