-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
85 lines (85 loc) · 2.03 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
78
79
80
81
82
83
84
85
{
"name": "blogfoster-scripts",
"version": "0.3.2",
"bin": {
"blogfoster-scripts": "./bin/index.js"
},
"scripts": {
"lint": "eslint .",
"format": "prettier --write './**/*.{js,json,md}'",
"test": "jest"
},
"engines": {
"node": ">=6.0.0"
},
"dependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.1.2",
"babel-loader": "^7.1.2",
"babel-plugin-sitrep": "^1.3.0",
"babel-plugin-syntax-trailing-function-commas": "^6.22.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.6.1",
"chalk": "^2.3.1",
"clean-webpack-plugin": "^0.1.17",
"copy-webpack-plugin": "^4.3.1",
"eslint": "^4.14.0",
"eslint-config-blogfoster": "^1.10.0",
"eslint-config-prettier": "^2.9.0",
"prettier": "^1.11.1",
"mri": "^1.1.0",
"source-map-support": "^0.5.0",
"webpack": "^3.10.0",
"webpack-node-externals": "^1.6.0"
},
"devDependencies": {
"eslint": "^4.14.0",
"eslint-config-blogfoster": "^1.10.0",
"eslint-config-prettier": "^2.9.0",
"jest": "^23.1.0",
"prettier": "^1.11.1"
},
"eslintConfig": {
"extends": [
"blogfoster",
"prettier"
],
"rules": {
"camelcase": "off",
"class-methods-use-this": "off",
"global-require": "off",
"import/max-dependencies": "off",
"import/newline-after-import": "off",
"import/no-dynamic-require": "off",
"import/no-named-as-default": "off",
"import/prefer-default-export": "off",
"no-console": "off",
"no-underscore-dangle": "off",
"prefer-template": "off"
}
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5",
"overrides": [
{
"files": "**/*.json",
"options": {
"parser": "json"
}
},
{
"files": "**/*.md",
"options": {
"parser": "markdown"
}
}
]
},
"jest": {
"watchPathIgnorePatterns": [
"tests/build/"
]
}
}