-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
35 lines (35 loc) · 925 Bytes
/
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
{
"name": "prettier-eslint-webpack-plugin",
"version": "0.13.37",
"description": "Webpack plugin that formats your JavaScript using prettier followed by eslint --fix",
"main": "index.js",
"scripts": {
"test": "jest --coverage"
},
"author": "Daniël Terwiel",
"license": "MIT",
"dependencies": {
"core-js": "^3.15.2",
"eslint-config-standard": "^7.1.0",
"fs-readfile-promise": "^3.0.0",
"fs-writefile-promise": "^2.0.0",
"prettier-eslint": "^4.4.0"
},
"devDependencies": {
"babel-jest": "^19.0.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"eslint-plugin-jest": "^19.0.1",
"jest": "^19.0.0"
},
"repository": {
"type": "git",
"url": "git://github.com/danielterwiel/prettier-eslint-webpack-plugin"
},
"jest": {
"modulePathIgnorePatterns": [
"./__tests__/example.js"
]
}
}