-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1 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": "blacksun1-chalk-logger",
"description": "Simple logger that uses chalk to create a human friendly output",
"version": "1.1.0",
"main": "./dist/",
"license": "MIT",
"scripts": {
"lab": "./node_modules/.bin/lab -cSv -a code -r console -o stdout -r html -o coverage.html --verbose",
"test": "npm run lab",
"travis": "grunt && ./node_modules/.bin/lab -cSv -a code -r lcov | node_modules/.bin/coveralls",
"prepublish": "grunt && npm run test"
},
"files": [
"dist",
"test"
],
"dependencies": {
"babel-runtime": "^6.11.6",
"chalk": "^1.1.3",
"intravenous": "^0.1.4-beta"
},
"devDependencies": {
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.14.0",
"code": "^4.0.0",
"coveralls": "^2.11.14",
"grunt": "^1.0.1",
"grunt-babel": "^6.0.0",
"grunt-cmd": "0.0.4",
"grunt-contrib-clean": "^1.0.0",
"grunt-eslint": "^19.0.0",
"lab": "^11.0.1",
"load-grunt-tasks": "^3.3.0",
"sinon": "^1.17.6"
}
}