-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
36 lines (36 loc) · 1.13 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
{
"name": "namespaced-console-logger",
"version": "1.1.0",
"description": "Small namespaced stdout / stderr logger with a timestamp for the browser and Node.js",
"keywords": [
"console",
"namespace",
"timestamp",
"logger"
],
"repository": {
"type": "git",
"url": "git://github.com/dowjones/namespaced-console-logger.git"
},
"main": "lib/index",
"author": "nemtsov@gmail.com",
"license": "MIT",
"scripts": {
"prepublish": "babel --loose all src -d lib",
"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": {},
"devDependencies": {
"babel": "^5.6.23",
"babel-eslint": "^4.1.8",
"eslint": "^1.10.3",
"istanbul": "^0.3.17",
"mocha": "^2.2.5",
"should": "^7.0.2",
"sinon": "^1.15.4"
}
}