-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
66 lines (66 loc) · 1.67 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
59
60
61
62
63
64
65
66
{
"name": "logging",
"version": "3.3.0",
"description": "Lightweight informative modern console logging.",
"main": "lib",
"browser": "lib/browser.js",
"files": [
"lib",
"src",
"index.d.ts"
],
"scripts": {
"start": "babel-node src",
"test": "npm -s run lint && ava --verbose && npm -s run example",
"update-snapshots": "ava --verbose --update-snapshots",
"lint": "eslint -c .eslintrc.js . --fix",
"build": "babel src --out-dir=lib",
"outdated": "npm-check -s",
"example": "babel-node examples/simple.js",
"prepublish": "npm -s run build",
"precommit": "npm -s run test",
"np": "np"
},
"repository": "http://github.com/dylang/logging",
"author": "Dylan Greene <[email protected]>",
"license": "MIT",
"dependencies": {
"chalk": "^4.1.0",
"debug": "^4.3.1",
"nicely-format": "^1.1.0"
},
"devDependencies": {
"ava": "^3.15.0",
"babel-cli": "^6.23.0",
"babel-core": "^6.23.1",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.1.6",
"babel-runtime": "^6.23.0",
"eslint": "^7.19.0",
"eslint-config-xo": "^0.34.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-ava": "^11.0.0",
"eslint-plugin-import": "^2.0.1",
"eslint-plugin-no-use-extend-native": "^0.5.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-unicorn": "^27.0.0",
"husky": "^4.3.8",
"mockdate": "^3.0.2",
"nodemon": "^2.0.7",
"np": "^7.2.0",
"npm": "^7.5.2",
"npm-check": "^5.4.0",
"sinon": "^9.2.4"
},
"engines": {
"node": ">= 4"
},
"ava": {
"require": [
"babel-register"
]
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}