-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
41 lines (41 loc) · 1.05 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
{
"name": "klg-logger",
"version": "3.0.1",
"description": "log 工具,基于 tracer,简单,可以显示 log 的位置",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "tslint -c tslint.json 'src/**/*.ts' --fix",
"build": "./node_modules/.bin/tsc -d -p ./",
"test": "jest --config=jest.json",
"cov": "jest --config=jest.json --coverage --coverageDirectory=coverage",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/kaolalicai/klg-logger"
},
"keywords": [
"log",
"klg"
],
"author": "nick",
"license": "ISC",
"dependencies": {
"tracer": "^0.9.2"
},
"devDependencies": {
"@types/mocha": "^2.2.48",
"@types/power-assert": "^1.4.29",
"@types/should": "^13.0.0",
"jest": "^22.4.2",
"power-assert": "^1.4.4",
"should": "^13.2.1",
"source-map-support": "^0.5.3",
"ts-jest": "^22.4.2",
"ts-node": "^5.0.1",
"tslint": "^5.9.1",
"tslint-config-klg": "^1.0.3",
"typescript": "^2.7.2"
}
}