-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
40 lines (40 loc) · 974 Bytes
/
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
{
"name": "think-logger3",
"version": "1.4.0",
"description": "logger for ThinkJS 3.x",
"main": "./src",
"types": "index.d.ts",
"scripts": {
"test": "npm run eslint && npm run test-cov",
"test-cov": "nyc ava test/ && nyc report --reporter=html",
"eslint": "eslint ./src",
"prepublish": "npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thinkjs/think-logger.git"
},
"keywords": [
"thinkjs",
"logger",
"log4js"
],
"author": "lizheming",
"license": "MIT",
"bugs": {
"url": "https://github.com/thinkjs/think-logger/issues"
},
"homepage": "https://github.com/thinkjs/think-logger#readme",
"dependencies": {
"log4js": "^6.4.0"
},
"devDependencies": {
"ava": "^4.0.1",
"eslint": "^7.32.0",
"eslint-config-think": "^1.0.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-standard": "^5.0.0",
"nyc": "^15.1.0",
"sandboxed-module": "^2.0.3"
}
}