-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.12 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
{
"name": "debugging",
"version": "2.0.0",
"description": "this.debugging = debug + callsites + derived namespacing",
"author": {
"name": "Buster Collings",
"email": "busterc@gmail.com",
"url": "https://about.me/buster"
},
"files": [
"lib"
],
"main": "lib/index.js",
"keywords": [
"debug",
"debugging",
"debugger",
"log",
"logger",
"logging",
"callsite",
"callsites",
"stack",
"trace",
"stacktrace",
"namespace"
],
"dependencies": {
"debug": "^4.1.0"
},
"devDependencies": {
"coveralls": "^3.0.2",
"eslint": "^5.8.0",
"eslint-config-xo-space": "^0.20.0",
"intercept-stdout": "^0.1.2",
"jest": "^23.6.0",
"jest-cli": "^23.6.0",
"nsp": "^3.2.1"
},
"scripts": {
"prepublish": "nsp check",
"pretest": "eslint . --fix",
"test-debug": "jest --coverage",
"test": "DEBUG=test* npm run test-debug"
},
"eslintConfig": {
"extends": "xo-space",
"env": {
"jest": true,
"node": true
}
},
"repository": "busterc/debugging",
"jest": {
"testEnvironment": "node"
},
"license": "ISC"
}