-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.32 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
{
"name": "enchanted-debug",
"version": "1.0.0",
"description": "a wrapper around the amazing debug that automaticly adds namespace based on the path and project root.",
"main": "lib/",
"scripts": {
"watch": "DEBUG='*,-ava,-babel' ava --watch",
"prepublish": "npm run build",
"build": "babel src -d lib",
"prebuild": "npm test",
"test": "xo && DEBUG='*,-ava,-babel' nyc ava",
"coveralls": "DEBUG='*,-ava,-babel' nyc report --reporter=text-lcov | coveralls"
},
"engines": {
"node": ">4.0.0"
},
"keywords": [
"debug-middleware",
"debug",
"logging"
],
"author": "Sindre Øye Svendby",
"license": "ISC",
"peerDependencies": {
"debug": "*"
},
"devDependencies": {
"ava": "^0.17.0",
"babel-cli": "^6.18.0",
"babel-polyfill": "^6.20.0",
"babel-preset-latest": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"coveralls": "^2.11.15",
"debug": "^2.5.1",
"eslint": "^3.12.2",
"eslint-config-airbnb-base": "^11.0.0",
"eslint-plugin-ava": "^4.0.0",
"eslint-plugin-import": "^2.2.0",
"nyc": "^10.0.0",
"sinon": "^1.17.6",
"xo": "^0.17.1"
},
"dependencies": {
"callsite": "^1.0.0"
},
"xo": {
"ignores": "lib/**"
},
"ava": {
"require": [
"babel-register"
],
"babel": "inherit",
"serial": true
}
}