-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.98 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
{
"name": "webpack-blocks-copy",
"version": "2.0.0-beta.0",
"description": "A webpack-block for copy-webpack-plugin",
"main": "lib/index.js",
"scripts": {
"build": "babel index.js -d lib",
"test": "jest",
"test-watch": "jest --watch",
"prepublish": "yarn build",
"precommit": "lint-staged",
"format": "prettier-eslint --write \"packages/*/src/**/*.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/ecliptic/webpack-blocks-copy.git"
},
"author": "Brandon Konkle <brandon@ecliptic.io>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ecliptic/webpack-blocks-copy/issues"
},
"keywords": [
"webpack",
"webpack-blocks",
"copy-webpack-plugin"
],
"homepage": "https://github.com/ecliptic/webpack-blocks-copy#readme",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"babel-preset-react-optimize": "^1.0.1",
"eslint": "^3.19.0",
"eslint-config-cleanjs": "^4.0.0",
"eslint-config-standard": "^10.2.1",
"eslint-config-standard-react": "^5.0.0",
"eslint-plugin-better": "^0.1.5",
"eslint-plugin-flowtype": "^2.33.0",
"eslint-plugin-fp": "^2.3.0",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-node": "^4.2.2",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^7.0.1",
"eslint-plugin-standard": "^3.0.1",
"flow-bin": "^0.46.0",
"husky": "^0.13.3",
"jest": "^20.0.4",
"lint-staged": "^3.4.2",
"prettier-eslint-cli": "^4.0.1"
},
"dependencies": {
"copy-webpack-plugin": "^4.0.1"
},
"lint-staged": {
"*.js": [
"yarn run format",
"git add"
]
}
}