This repository has been archived by the owner on Sep 21, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
77 lines (77 loc) · 1.86 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@reactioncommerce/logger",
"version": "1.1.5",
"description": "Reaction application logging based on Bunyan logger",
"main": "./dist/main.js",
"scripts": {
"build": "rimraf ./dist && babel src --out-dir ./dist",
"lint": "eslint ./src",
"lintfix": "eslint ./src --fix",
"watch": "watch 'npm run build' src"
},
"repository": {
"type": "git",
"url": "https://github.com/reactioncommerce/logger.git"
},
"author": "Reaction Commerce <hello@reactioncommerce.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/reactioncommerce/logger/issues"
},
"homepage": "https://github.com/reactioncommerce/logger#readme",
"devDependencies": {
"@reactioncommerce/eslint-config": "^1.0.1",
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-plugin-add-module-exports": "^1.0.2",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-2": "^6.24.1",
"eslint": "^4.19.1",
"eslint-plugin-import": "^2.10.0",
"eslint-plugin-jest": "^21.15.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.7.0",
"rimraf": "^2.6.2",
"semantic-release": "^17.2.3",
"watch": "^1.0.2"
},
"dependencies": {
"bunyan": "^1.8.15",
"bunyan-format": "^0.2.1",
"node-loggly-bulk": "^2.2.5"
},
"babel": {
"presets": [
"env",
"stage-2"
],
"plugins": [
[
"add-module-exports",
{
"addDefaultProperty": true
}
]
],
"sourceMaps": true
},
"eslintConfig": {
"extends": "@reactioncommerce",
"rules": {
"node/no-unsupported-features/es-syntax": "off"
}
},
"prettier": {
"arrowParens": "always"
},
"release": {
"branches": [
"trunk"
]
},
"publishConfig": {
"access": "public"
}
}