forked from vauxite-org/typescript-logging
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 2.27 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
{
"name": "typescript-logging",
"version": "0.6.0",
"description": "Library for logging, written in typescript, can be used by normal es5+ javascript as well.",
"main": "dist/commonjs/typescript-logging",
"scripts": {
"test": "tsc -p tsconfig-test.json && jasmine-node --verbose ./dist-test/spec",
"testLoadBundle": "webpack --config webpack.config.bundle.node.js && node spec/testLoadUseBundle.js",
"tslint": "tslint -c tslint.json -p tsconfig.json 'src/logging/**/*.ts'",
"build": "tsc && npm run tslint && webpack --config webpack.config.bundle.js && webpack --config webpack.config.bundle-min.js",
"docs": "typedoc --tsconfig tsconfig-docs.json --excludeNotExported --excludePrivate --mode modules --out dist/bundle/docs/api src/logging/typescript-logging.ts && github-markdown docs/latest_log4j.md --flavor gfm --title 'TypeScript log4j logging documentation' > dist/bundle/docs/index_log4j.html && github-markdown docs/latest_categorized.md --flavor gfm --title 'TypeScript logging categorized documentation' > dist/bundle/docs/index_categorized.html && node scripts/process-docs.js dist/bundle",
"release": "npm run build && npm run test && npm run testLoadBundle && npm run docs"
},
"files": [
"dist/",
"docs/",
"img/",
"src/",
"LICENSE",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mreuvers/typescript-logging.git"
},
"keywords": [
"typescript-logging",
"logging",
"javascript-logging",
"log",
"logger"
],
"author": "Martijn Reuvers <[email protected]> (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/jasmine-node": "1.14.32",
"@types/stacktrace-js": "0.0.30",
"archiver": "2.1.0",
"jasmine": "2.8.0",
"jasmine-node": "1.14.5",
"markdown-to-html": "0.0.13",
"shelljs": "0.7.8",
"source-map-loader": "0.2.3",
"ts-loader": "3.1.1",
"tslint": "5.8.0",
"typedoc": "0.9.0",
"typescript": "2.4.2",
"webpack": "2.7.0"
},
"typings": "./dist/commonjs/typescript-logging.d.ts",
"dependencies": {
"stacktrace-js": "1.3.1"
}
}