-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.23 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.23 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
{
"name": "structured-log-seq-sink",
"version": "0.4.1",
"description": "A structured-log plugin that writes log events to Seq.",
"main": "dist/structured-log-seq-sink.js",
"jsnext:main": "dist/structured-log-seq-sink.es6.js",
"scripts": {
"build": "rollup -c",
"prepublish": "npm run build",
"test": "mocha --exit",
"build-watch": "rollup -cw",
"test-watch": "mocha -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Wedvich/structured-log-seq-sink.git"
},
"author": "Martin Wedvich",
"license": "MIT",
"bugs": {
"url": "https://github.com/Wedvich/structured-log-seq-sink/issues"
},
"homepage": "https://github.com/Wedvich/structured-log-seq-sink#readme",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-plugin-transform-class-properties": "^6.11.5",
"babel-plugin-transform-object-rest-spread": "^6.20.2",
"babel-preset-env": "^1.7.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"fetch-mock": "^6.5.2",
"mocha": "^5.2.0",
"node-fetch": "^2.2.0",
"rollup": "^0.64.1",
"rollup-cli": "^1.0.9",
"rollup-plugin-babel": "^3.0.7",
"sinon": "^6.1.5"
},
"peerDependencies": {
"structured-log": "^0.1.0 || ^0.0.18"
}
}