-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
67 lines (67 loc) · 1.64 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
{
"name": "ts-log-class",
"version": "1.1.2",
"description": "Class Logging via Decorator with out and message format hooks",
"main": ".webpack/index.js",
"types": ".webpack/@types/index.d.ts",
"scripts": {
"test": "nyc mocha **/*.spec.ts",
"bundle": "webpack",
"postbundle": "tsc -p tsconfig.json --emitDeclarationOnly --declaration --outFile ./.webpack/@types/index.d.ts --skipLibCheck",
"prepare": "npm test && npm run bundle"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bakerstreet-industries/ts-log-class.git"
},
"keywords": [
"Typescript",
"Logging",
"ES7",
"Decorators"
],
"author": "Russ Watson",
"license": "MIT",
"bugs": {
"url": "https://github.com/bakerstreet-industries/ts-log-class/issues"
},
"homepage": "https://github.com/bakerstreet-industries/ts-log-class#readme",
"devDependencies": {
"@types/chai": "^4.2.18",
"@types/chai-spies": "^1.0.3",
"@types/mocha": "^8.2.2",
"chai": "^4.3.4",
"chai-spies-next": "^0.9.3",
"coveralls": "^3.1.0",
"mocha": "^8.4.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^15.1.0",
"ts-loader": "^9.2.2",
"ts-node": "^10.0.0",
"tslint": "^6.1.3",
"typescript": "^4.3.2",
"webpack": "^5.37.1",
"webpack-cli": "^4.7.0"
},
"nyc": {
"include": [
"src/*.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"text-summary",
"html"
],
"sourceMap": true,
"instrument": true
},
"dependencies": {
"circular-json": "^0.5.9"
},
"typings": ".webpack/@types/index.d.ts"
}