This repository was archived by the owner on Dec 28, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.6 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.6 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
{
"name": "debug-es",
"version": "3.0.1",
"description": "small debugging utility like 'debug', but write in es6",
"repository": {
"type": "git",
"url": "https://github.com/LightouchDev/debug-es"
},
"main": "./lib/index.js",
"module": "./src/index.js",
"scripts": {
"build": "cross-env BABEL_ENV=build babel src --out-dir lib",
"coverage": "cross-env BABEL_ENV=test jest --verbose --coverage --collectCoverageFrom=src/**/*",
"test": "cross-env BABEL_ENV=test jest --verbose"
},
"keywords": [
"debug",
"logging"
],
"author": "TJ Holowaychuk <tj@vision-media.ca>",
"contributors": [
"Nathan Rajlich <nathan@tootallnate.net> (http://n8.io)",
"Andrew Rhyne <rhyneandrew@gmail.com>",
"Miau Lightouch <miaulightouch@gmail.com>"
],
"license": "MIT",
"dependencies": {
"@babel/runtime-corejs3": "^7.10.3",
"core-js": "3",
"ms": "^2.1.1",
"supports-color": "^7.1.0"
},
"devDependencies": {
"@babel/cli": "^7.10.3",
"@babel/core": "^7.2.2",
"@babel/plugin-transform-runtime": "^7.10.3",
"@babel/preset-env": "^7.2.3",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "26.1.0",
"babel-plugin-add-module-exports": "^1.0.0",
"coveralls": "^3.0.2",
"cross-env": "7.0.2",
"eslint": "^7.3.1",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^23.17.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"jest": "26.1.0",
"regenerator-runtime": "^0.13.1"
}
}