-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.65 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
{
"name": "web-central-logging",
"version": "1.0.0",
"description": "Utilities for aggregating frontend logs",
"main": "lib/",
"scripts": {
"precommit": "eslint . && npm run build",
"test": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha test/*.js -- --require babel-register",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"clear:lib": "rm -rf lib",
"build": "npm run clear:lib && babel src --out-dir lib --source-maps",
"lint": "eslint --ext .js -f node_modules/eslint-detailed-reporter/lib/detailed.js -o ./eslint/report.html './src' './test'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/grofers/logster.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/grofers/logster/issues"
},
"homepage": "https://github.com/grofers/logster#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.26.0",
"body-parser": "^1.18.2",
"chai": "^4.1.2",
"chai-http": "^3.0.0",
"coveralls": "^3.0.0",
"eslint": "^4.14.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-esnext": "^2.0.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.5.1",
"express": "^4.16.2",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^4.0.1",
"sinon": "^4.1.3",
"supertest": "^3.0.0"
},
"dependencies": {
"bunyan": "^1.8.8",
"bunyan-syslog": "git://github.com/grofers/node-bunyan-syslog.git#9bdb9eb62a763c7d30e032a619138032d5ff8771",
"isomorphic-fetch": "^2.2.1"
}
}