forked from dowjones/distribucache-console-logger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.15 KB
/
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
34
35
36
37
38
{
"name": "distribucache-console-logger",
"version": "1.1.0",
"description": "Distribucahce stdout / stderr logger",
"keywords": [
"distribucache",
"logger"
],
"repository": {
"type": "git",
"url": "git://github.com/dowjones/distribucache-console-logger.git"
},
"main": "lib/index",
"author": "[email protected]",
"license": "MIT",
"scripts": {
"prepublish": "babel src -d lib --optional runtime",
"lint": "eslint src test",
"test": "sh -c 'npm run lint && npm run test-cover && npm run test-cover-check'",
"test-cover": "istanbul cover _mocha -- -r should --recursive --compilers js:babel/register",
"test-cover-check": "istanbul check-coverage --statements 100 --functions 100 --branches 100 --lines 100",
"test-watch": "mocha -G -r should --recursive -w -R min -t 200 --compilers js:babel/register"
},
"dependencies": {
"babel-runtime": "^5.7.0",
"colors": "^1.1.2",
"lodash": "^3.10.1"
},
"devDependencies": {
"babel": "^5.6.23",
"babel-eslint": "^3.1.23",
"eslint": "^0.24.1",
"istanbul": "^0.3.17",
"mocha": "^2.2.5",
"should": "^7.0.2",
"sinon": "^1.15.4"
}
}