This repository has been archived by the owner on May 24, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
64 lines (64 loc) · 1.47 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
{
"name": "log-util",
"version": "2.3.0",
"description": "node log utility",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/vivaxy/log-util.git"
},
"keywords": [
"log"
],
"author": "vivaxy",
"license": "MIT",
"bugs": {
"url": "https://github.com/vivaxy/log-util/issues"
},
"homepage": "https://github.com/vivaxy/log-util#readme",
"dependencies": {
"chalk": "^4.0.0",
"figures": "^3.0.0",
"log-symbols": "^4.0.0"
},
"scripts": {
"build": "tsc",
"test": "ava -s",
"release": "npm test && npm run build && standard-version && git push --follow-tags && npm publish --registry=\"https://registry.npmjs.org/\"",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/node": "^12.0.10",
"ava": "^3.0.0",
"husky": "5",
"lint-staged": "^10.0.0",
"pinst": "^2.1.4",
"prettier": "^2.0.0",
"standard-version": "^9.0.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.0"
},
"lint-staged": {
"**/**.{js,json,ts,md}": [
"prettier --write",
"git add"
]
},
"ava": {
"files": [
"src/__tests__/**/*.ts"
],
"compileEnhancements": false,
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
}
}