-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
79 lines (79 loc) · 1.58 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
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "acho",
"description": "The Hackable Log",
"homepage": "https://acho.js.org",
"version": "4.0.6",
"main": "./lib/Acho.js",
"author": {
"email": "[email protected]",
"name": "Kiko Beats",
"url": "https://github.com/Kikobeats"
},
"repository": {
"type": "git",
"url": "git+https://github.com/achojs/acho.git"
},
"bugs": {
"url": "https://github.com/achojs/acho/issues"
},
"keywords": [
"debug",
"debugger",
"hackable",
"log",
"logger",
"logging",
"simple",
"tiny"
],
"dependencies": {
"chalk": "~4.1.0",
"fmt-obj": "~2.0.0",
"pretty-ms": "~7.0.0",
"sliced": "~1.0.1"
},
"devDependencies": {
"coveralls": "latest",
"docsify-cli": "latest",
"git-dirty": "latest",
"husky": "latest",
"lint-staged": "latest",
"mocha": "latest",
"nyc": "latest",
"prettier-standard": "latest",
"should": "latest",
"standard": "latest",
"standard-markdown": "latest"
},
"engines": {
"node": ">= 6"
},
"files": [
"index.js",
"lib"
],
"scripts": {
"clean": "rm -rf node_modules",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"lint": "standard-markdown && standard",
"pretest": "npm run lint",
"pretty": "prettier-standard index.js examples/**/*.js --single-quote",
"test": "nyc mocha"
},
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier-standard"
]
},
"standard": {
"env": [
"mocha"
]
}
}