forked from Wedvich/structured-log
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.17 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
{
"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 js:babel-core/register -r core-js/es6/weak-map -r core-js/es6/promise -r core-js/fn/array/find -r core-js/fn/array/is-array",
"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"
},
"repository": {
"type": "git",
"url": "https://github.com/structured-log/structured-log"
},
"keywords": [
"logging",
"structured",
"semantic",
"serilog"
],
"author": "structured-log Contributors",
"license": "Apache 2",
"bugs": {
"url": "https://github.com/structured-log/structured-log/issues"
},
"dependencies": {
"core-js": "^2.4.1"
},
"devDependencies": {
"babel-core": "^6.13.2",
"babel-preset-es2015": "^6.13.2",
"babel-preset-es2015-rollup": "^1.2.0",
"babel-register": "^6.11.6",
"chai": "^3.5.0",
"mocha": "^3.0.2",
"rollup": "^0.34.10",
"rollup-plugin-babel": "^2.6.1",
"sinon": "^1.17.5"
}
}