forked from vauxite-org/typescript-logging
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.49 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.49 KB
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
68
69
70
71
72
{
"name": "typescript-logging",
"version": "0.7.0",
"description": "Library for logging, written in typescript.",
"main": "dist/bundle/typescript-logging.js",
"module": "dist/bundle/typescript-logging.esm.js",
"browser": "dist/bundle/typescript-logging.browser.js",
"typings": "dist/bundle/scr/logging/typescript-logging.d.ts",
"scripts": {
"clean": "del-cli ./dist",
"compile": "rollup -c",
"compile-watch": "rollup -cw",
"tslint": "tslint -c tslint.json -p tsconfig.json",
"test": "jest --no-cache",
"test-watch": "jest --watchAll",
"test-bundle": "node spec/testLoadUseBundle.js",
"bundle-browser": "cross-env BUNDLE_BROWSER=true rollup -c",
"build": "npm run compile && npm run bundle-browser && npm run test && npm run tslint",
"docs": "typedoc --tsconfig tsconfig-docs.json --excludeNotExported --excludePrivate --mode modules --out dist/bundle/docs/api src/logging/typescript-logging.ts && showdown makehtml -i docs/latest_log4j.md -o dist/bundle/docs/index_log4j.html && showdown makehtml -i docs/latest_categorized.md -o dist/bundle/docs/index_categorized.html && node scripts/process-docs.js dist/bundle",
"release": "npm run clean && npm run build && npm run test-bundle && npm run docs && del-cli ./dist/bundle/spec"
},
"files": [
"dist/",
"docs/",
"img/",
"src/",
"LICENSE",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mreuvers/typescript-logging.git"
},
"keywords": [
"typescript-logging",
"logging",
"log",
"logger"
],
"author": "Martijn Reuvers <martijnr.work@gmail.com> (http://www.javalid.org)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/mreuvers/typescript-logging/issues"
},
"homepage": "https://github.com/mreuvers/typescript-logging#readme",
"devDependencies": {
"@types/jest": "25.1.4",
"@types/stacktrace-js": "0.0.33",
"archiver": "3.1.1",
"cross-env": "7.0.2",
"del-cli": "3.0.0",
"jest": "25.2.3",
"rollup": "2.2.0",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-typescript2": "0.27.0",
"rollup-plugin-uglify": "6.0.4",
"shelljs": "0.8.3",
"showdown": "1.9.1",
"source-map-loader": "0.2.4",
"ts-jest": "25.2.1",
"ts-loader": "6.2.2",
"ts-node": "8.8.1",
"tslint": "6.1.0",
"typedoc": "0.17.3",
"typescript": "3.8.3",
"wait-for-expect": "3.0.2"
},
"dependencies": {
"stacktrace-js": "1.3.1"
}
}