-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.33 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
{
"name": "wrapp-log",
"version": "1.0.1",
"description": "A NodeJS logging library for Wrapp that outputs logs in accordance with Wrapp Engineering Proposal 007",
"keywords": [
"wrapp",
"wep",
"log",
"json",
"logging",
"error",
"stack-trace"
],
"homepage": "https://github.com/wrapp/wrapp-log.js",
"repository": "https://github.com/wrapp/wrapp-log.js",
"author": {
"name": "Marcus Bergman",
"email": "marcus.bergman@wrapp.com",
"url": "https://github.com/mraxus"
},
"license": "MIT",
"bugs": {
"email": "operations@wrapp.com",
"url": "https://github.com/wrapp/wrapp-log.js/issues"
},
"engines": {
"node": ">=7"
},
"main": "src/index.js",
"scripts": {
"lint": "eslint .",
"test": "jest --coverage src/",
"watch": "jest --watch --coverage src/",
"precommit": "lint-staged",
"prepush": "yarn test"
},
"lint-staged": {
"src/*.js": [
"eslint",
"jest --bail --findRelatedTests"
]
},
"dependencies": {
"circular-json": "^0.3.3",
"stack-trace": "^0.0.10"
},
"devDependencies": {
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-jest": "^20.0.3",
"husky": "^0.13.4",
"jest": "^20.0.4",
"lint-staged": "^3.6.0",
"mockdate": "^2.0.1"
}
}