-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.91 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "env-bunyan",
"version": "0.1.0",
"description": "Bunyan wrapper with environment variables",
"main": "lib/index.js",
"scripts": {
"test": "npm run lint && babel-node ./node_modules/babel-istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha --report lcovonly --report text --report html -- --compilers js:babel-register test",
"lint": "run-p lint-*",
"lint-src": "eslint src --fix",
"lint-test": "eslint test --fix",
"precommit": "lint-staged",
"commitmsg": "validate-commit-msg",
"babel": "babel src -d lib -s",
"build": "rimraf lib && npm run babel",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"prepublish": "npm run build",
"posttest": "babel-istanbul check-coverage --statements 100 --functions 100 --branches 100 --lines 100"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SharonGrossman/env-bunyan.git"
},
"keywords": [
"bunyan",
"log",
"env"
],
"author": "Sharon Grossman",
"license": "MIT",
"bugs": {
"url": "https://github.com/SharonGrossman/env-bunyan/issues"
},
"homepage": "https://github.com/SharonGrossman/env-bunyan#readme",
"engines": {
"node": ">=4"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-istanbul": "^0.11.0",
"babel-preset-env": "0.0.6",
"babel-register": "^6.16.3",
"chai": "^3.5.0",
"coveralls": "^2.11.14",
"eslint": "^3.8.1",
"eslint-config-noamokman": "^5.0.0",
"husky": "^0.11.9",
"lint-staged": "^3.2.0",
"mocha": "^3.0.2",
"mockery": "^2.0.0",
"npm-run-all": "^3.1.1",
"rimraf": "^2.5.4",
"sinon": "^1.17.7",
"sinon-chai": "^2.8.0",
"validate-commit-msg": "^2.8.2"
},
"dependencies": {
"bunyan": "^1.8.5",
"bunyan-format": "^0.2.1",
"require-uncached": "^1.0.3"
}
}