-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.26 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": "webpack-filesystem-plugin",
"version": "0.4.0",
"description": "Filesystem wrapper in webpack workflow",
"main": "index.js",
"scripts": {
"lint": "eslint '**/*.js' --ignore-path .eshintignore",
"cover": "istanbul cover node_modules/mocha/bin/_mocha",
"test": "npm run lint && npm run cover && codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iGitScor/webpack-filesystem-plugin.git"
},
"keywords": [
"webpack",
"plugin",
"filesystem",
"shell"
],
"author": "iGitScor <sebastien.correaud@gmail.com> (http://iscor.me)",
"license": "MIT",
"bugs": {
"url": "https://github.com/iGitScor/webpack-filesystem-plugin/issues"
},
"homepage": "https://github.com/iGitScor/webpack-filesystem-plugin#readme",
"dependencies": {
"lodash": "4.17.x",
"winston": "^2.3.1"
},
"devDependencies": {
"codecov": "^2.2.x",
"eslint": "^3.16.x",
"eslint-config-airbnb": "^14.1.x",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-jsx-a11y": "^4.0.x",
"eslint-plugin-react": "^6.10.x",
"expect.js": "0.3.x",
"istanbul": "0.4.x",
"mocha": "^3.4.x",
"webpack-mock": "0.1.x"
},
"engines": {
"node": ">=6"
},
"files": [
"index.js",
"helpers"
]
}