source:
imaps-frontend/node_modules/debug/package.json
Last change on this file was d565449, checked in by , 4 weeks ago | |
---|---|
|
|
File size: 1.4 KB |
Line | |
---|---|
1 | { |
2 | "name": "debug", |
3 | "version": "4.3.6", |
4 | "repository": { |
5 | "type": "git", |
6 | "url": "git://github.com/debug-js/debug.git" |
7 | }, |
8 | "description": "Lightweight debugging utility for Node.js and the browser", |
9 | "keywords": [ |
10 | "debug", |
11 | "log", |
12 | "debugger" |
13 | ], |
14 | "files": [ |
15 | "src", |
16 | "LICENSE", |
17 | "README.md" |
18 | ], |
19 | "author": "Josh Junon (https://github.com/qix-)", |
20 | "contributors": [ |
21 | "TJ Holowaychuk <tj@vision-media.ca>", |
22 | "Nathan Rajlich <nathan@tootallnate.net> (http://n8.io)", |
23 | "Andrew Rhyne <rhyneandrew@gmail.com>" |
24 | ], |
25 | "license": "MIT", |
26 | "scripts": { |
27 | "lint": "xo", |
28 | "test": "npm run test:node && npm run test:browser && npm run lint", |
29 | "test:node": "istanbul cover _mocha -- test.js test.node.js", |
30 | "test:browser": "karma start --single-run", |
31 | "test:coverage": "cat ./coverage/lcov.info | coveralls" |
32 | }, |
33 | "dependencies": { |
34 | "ms": "2.1.2" |
35 | }, |
36 | "devDependencies": { |
37 | "brfs": "^2.0.1", |
38 | "browserify": "^16.2.3", |
39 | "coveralls": "^3.0.2", |
40 | "istanbul": "^0.4.5", |
41 | "karma": "^3.1.4", |
42 | "karma-browserify": "^6.0.0", |
43 | "karma-chrome-launcher": "^2.2.0", |
44 | "karma-mocha": "^1.3.0", |
45 | "mocha": "^5.2.0", |
46 | "mocha-lcov-reporter": "^1.2.0", |
47 | "sinon": "^14.0.0", |
48 | "xo": "^0.23.0" |
49 | }, |
50 | "peerDependenciesMeta": { |
51 | "supports-color": { |
52 | "optional": true |
53 | } |
54 | }, |
55 | "main": "./src/index.js", |
56 | "browser": "./src/browser.js", |
57 | "engines": { |
58 | "node": ">=6.0" |
59 | } |
60 | } |
Note:
See TracBrowser
for help on using the repository browser.