-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 1.66 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@consoless/core",
"version": "1.0.0-beta.1",
"description": "Modern modular logger for your web apps",
"license": "MIT",
"repository": "consoless/core",
"author": {
"name": "Alexey Lizurchik",
"email": "al.lizurchik@gmail.com",
"url": "http://likerrr.ru"
},
"engines": {
"node": ">=6"
},
"scripts": {
"lint": "xo",
"coverage": "nyc report --reporter=text-lcov",
"coverage:report": "npm run coverage | codecov",
"test": "nyc ava",
"test:watch": "npm run test -- -watch",
"build": "npm run lint && webpack -p",
"start": "npm run lint && webpack --watch",
"precommit": "npm run test && npm run build",
"prepublish": "npm run precommit"
},
"files": [
"src",
"dist/bundle.umd.js"
],
"browser": "dist/bundle.umd.js",
"main": "src/index.js",
"keywords": [
"logger",
"modular",
"node",
"web-app",
"ES6"
],
"dependencies": {
"is-promise": "^2.1.0"
},
"devDependencies": {
"ava": "^0.19.1",
"babel-loader": "^7.0.0",
"babel-plugin-istanbul": "^4.0.0",
"babel-preset-env": "^1.1.8",
"babel-register": "^6.23.0",
"codecov": "^2.1.0",
"nyc": "^10.1.2",
"webpack": "2.5.1",
"xo": "^0.18.1"
},
"xo": {
"esnext": true,
"semicolon": true,
"space": 2,
"ignores": [
"test.js"
]
},
"ava": {
"require": [
"babel-register"
]
},
"nyc": {
"include": [
"test.js"
],
"reporter": [
"lcov",
"text"
],
"lines": 100,
"statements": 100,
"functions": 100,
"branches": 100,
"check-coverage": true,
"sourceMap": false,
"instrument": false
}
}