-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.21 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
{
"name": "bunyan-logsene",
"version": "0.0.2",
"description": "A Bunyan stream for sending log data to Logsene",
"main": "lib/bunyan_logsene.js",
"scripts": {
"pretest": "eslint .",
"test": "NODE_ENV=test istanbul cover node_modules/.bin/_mocha",
"test:junit": "NODE_ENV=test istanbul cover node_modules/.bin/_mocha -- --reporter mocha-junit-reporter --reporter-options mochaFile=$CIRCLE_TEST_REPORTS/mocha/junit.xml",
"test:no-cover": "NODE_ENV=test mocha",
"test:debug": "npm run test:no-cover -- --debug-brk",
"posttest": "nsp check"
},
"repository": {
"type": "git",
"url": "[email protected]:6RiverSystems/bunyan-logsene.git"
},
"keywords": [
"Bunyan",
"Logsene"
],
"author": "jbcpollak",
"license": "MIT",
"bugs": {
"url": "https://github.com/6RiverSystems/bunyan-logsene/issues"
},
"homepage": "https://github.com/6RiverSystems/bunyan-logsene",
"dependencies": {
"logsene-js": "1.1.27"
},
"devDependencies": {
"bunyan": "=1.8.1",
"chai": "=3.5.0",
"eslint": "3.6.1",
"eslint-config-defaults": "=9.0.0",
"istanbul": "0.4.5",
"mocha": "3.1.0",
"mocha-junit-reporter": "1.12.0",
"nsp": "2.6.1",
"sinon": "1.17.6"
}
}