-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.45 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
{
"name": "class-logger",
"version": "1.3.0",
"description": "Boilerplate-free decorator-based class logging",
"keywords": [
"decorator",
"log",
"logging",
"logger",
"class",
"bolierplate",
"proxy"
],
"main": "dist/index.js",
"scripts": {
"test": "npx jest -i",
"compile": "npx shx rm -rf dist && npx tsc -p tsconfig.prod.json",
"lint": "npx tsc -p tsconfig.json --noEmit && npx tslint -c tslint.json -p tsconfig.json",
"prepack": "npm run compile",
"coverage-report": "npx shx cat coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/keenondrums/class-logger.git"
},
"author": "keenondrums (andrey@goncharov.page)",
"license": "MIT",
"bugs": {
"url": "https://github.com/keenondrums/class-logger/issues"
},
"homepage": "https://github.com/keenondrums/class-logger#readme",
"devDependencies": {
"@types/jest": "^24.0.11",
"coveralls": "^3.0.3",
"doctoc": "^1.4.0",
"husky": "^1.3.1",
"inversify": "^5.0.1",
"jest": "^24.5.0",
"lint-staged": "^8.1.5",
"prettier": "^1.16.4",
"reflect-metadata": "^0.1.13",
"shx": "^0.3.2",
"ts-jest": "^24.0.0",
"tslint": "^5.14.0",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^8.0.1",
"typescript": "^3.7.5"
},
"peerDependencies": {
"reflect-metadata": "^0.1.13"
},
"dependencies": {
"fast-safe-stringify": "^2.0.6"
}
}