-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 3.12 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 3.12 KB
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
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "debugger-256",
"version": "1.6.43",
"description": "A debugging utility based on 'debug' package that supports extended options and 256 colors",
"main": "lib/debugger.js",
"scripts": {
"lint": "esw lib test",
"lint:fix": "npm run lint -- --fix",
"lint:watch": "npm run lint -- --watch",
"test": "NODE_ENV=test mocha",
"test:mochista": "NODE_ENV=test mochista --reporter spec --opts ./test/mochista.opts",
"test:watch": "NODE_ENV=test mocha --watch --reporter spec",
"reports:coveralls": "npm run coverage && cat ./coverage/lcov.info | coveralls && rm -rf coverage",
"reports:notes": "./node_modules/.bin/notes -x node_modules/ -g .gitignore || true",
"reports:depcheck": "node ./.bin/reports/depcheck.js",
"reports:gitstats": "./node_modules/.bin/git-stats --global-activity",
"reports:gitstats:initialize": "./bin/git/init-gitstats",
"reports:gitstats:authors": "./node_modules/.bin/git-stats --authors",
"reports:gitstats:report": "./node_modules/.bin/gitinspector -HTlrm -F text -x reports ./",
"reports:gitstats:report:html": "./node_modules/.bin/gitinspector -HTlrm -F html -x reports ./",
"test:coverage": "better-npm-run coverage",
"test:coverage:watch": "npm run test:mochista -- --watch"
},
"betterScripts": {
"coverage": {
"command": "./node_modules/.bin/istanbul cover --dir ./coverage --report text --report lcov node_modules/.bin/_mocha -- --opts ./test/mocha.opts --reporter spec",
"env": {
"NODE_ENV": "test"
}
}
},
"bin": {
"debugger256": "./bin/debugger256"
},
"repository": {
"type": "git",
"url": "git+https://github.com/njhoffman/debugger-256.git"
},
"author": "Nick Hoffman",
"license": "MIT",
"keywords": [
"debug",
"debugger",
"log",
"logger",
"console",
"inspect"
],
"dependencies": {
"ansi-256-colors": "^1.1.0",
"app-root-path": "^3.0.0",
"blessed": "^0.1.81",
"chalk": "^4.0.0",
"faker": "^4.1.0",
"fs": "0.0.2",
"lodash": "^4.17.11",
"minimist": "^1.2.5",
"prettyjson-256": "^1.5.18"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"babel-eslint": "^10.1.0",
"better-npm-run": "^0.1.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"code-notes": "^1.0.4",
"coveralls": "^3.0.11",
"depcheck": "^0.9.2",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.10.1",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-watch": "^6.0.1",
"git-stats": "^2.10.11",
"git-stats-importer": "^2.4.10",
"gitinspector": "^0.5.0-dev-2",
"husky": "^4.2.5",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^7.1.1",
"mochista": "^0.22.0",
"nodemon": "^2.0.3",
"prettier": "^2.0.4",
"proxyquire": "^2.1.0",
"sinon": "^9.0.2",
"sinon-chai": "^3.5.0"
}
}