forked from structured-log/structured-log
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.51 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.51 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
{
"name": "structured-log",
"version": "0.2.0",
"description": "A structured logging framework for JavaScript, inspired by Serilog.",
"main": "dist/structured-log.js",
"jsnext:main": "dist/structured-log.es6.js",
"scripts": {
"test": "mocha --compilers ts:ts-node/register -r test/polyfills.ts test/**/*.spec.ts",
"test-coverage": "ts-node node_modules/istanbul/lib/cli.js cover -e .ts -x \"*.d.ts\" -x \"*.spec.ts\" -x \"**/polyfills/**/*.ts\" node_modules/mocha/bin/_mocha -- -r test/polyfills.ts test/**/*.spec.ts",
"build-es5": "rollup -c rollup.config.es5.js",
"build-es6": "rollup -c rollup.config.es6.js",
"build": "npm run build-es5 && npm run build-es6",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/structured-log/structured-log"
},
"keywords": [
"logging",
"structured",
"semantic",
"serilog"
],
"author": "structured-log Contributors",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/structured-log/structured-log/issues"
},
"devDependencies": {
"@types/chai": "^3.4.34",
"@types/es6-promise": "0.0.32",
"@types/mocha": "^2.2.35",
"@types/node": "^6.0.57",
"chai": "^3.5.0",
"coveralls": "^2.11.15",
"es6-promise": "^4.0.5",
"es6-symbol": "^3.1.0",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^3.2.0",
"rollup": "^0.40.1",
"rollup-plugin-typescript": "^0.8.1",
"ts-node": "^2.0.0",
"typemoq": "^1.1.0",
"typescript": "^2.1.4"
}
}