forked from medfreeman/ignore-assets-webpack-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.18 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
{
"name": "@goldinteractive/ignore-assets-webpack-plugin",
"version": "3.0.0",
"description": "Ignore assets from compilation. Useful when you use non-js files as entry points with extract-text-webpack-plugin, and don't need the resulting empty js files.",
"keywords": [
"assets",
"files",
"ignore",
"webpack",
"webpack-plugin",
"webpack4"
],
"main": "lib/index.js",
"scripts": {
"build": "babel -d ./lib ./src",
"watch": "babel -w -d ./lib ./src",
"prepublish": "npm -s run build",
"lint": "eslint --fix ./src",
"tests": "ava",
"pretest": "npm -s run lint",
"test": "npm -s run tests",
"test-with-coverage": "nyc npm run test",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"release": "npmpub"
},
"repository": {
"type": "git",
"url": "git+https://github.com/medfreeman/ignore-assets-webpack-plugin.git"
},
"author": "Mehdi Lahlou <mehdi.lahlou@free.fr>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/medfreeman/ignore-assets-webpack-plugin/issues"
},
"homepage": "https://github.com/medfreeman/ignore-assets-webpack-plugin#readme",
"devDependencies": {
"ava": "^0.18.1",
"babel-cli": "^6.22.2",
"babel-eslint": "^7.1.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-regenerator": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"babel-register": "^6.22.0",
"coveralls": "^2.11.16",
"css-loader": "^0.26.1",
"eslint": "^3.15.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-babel": "^4.0.1",
"eslint-plugin-import": "^2.2.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"npmpub": "^3.1.0",
"nyc": "^10.1.2",
"regenerator-runtime": "^0.10.1",
"rimraf": "^2.5.4",
"style-loader": "^0.13.1",
"webpack": "^4.16.1"
},
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"webpack": ">=4.16.1"
},
"ava": {
"files": [
"test/*.js"
],
"require": [
"babel-register"
],
"babel": "inherit"
},
"nyc": {
"exclude": [
"test/**"
],
"include": [
"src/**"
]
},
"dependencies": {
"lodash": "^4.17.4"
}
}