-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
62 lines (62 loc) · 1.45 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
{
"name": "postcss-assets-webpack-plugin",
"description": "Webpack plugin to apply postcss on webpack's emit event",
"version": "4.1.2",
"license": "MIT",
"author": "Pavel Klimashkin",
"homepage": "https://github.com/klimashkin/postcss-assets-webpack-plugin",
"changelog": "https://github.com/klimashkin/postcss-assets-webpack-plugin/blob/master/CHANGELOG.md",
"repository": {
"type": "git",
"url": "https://github.com/klimashkin/postcss-assets-webpack-plugin.git"
},
"bugs": {
"url": "https://github.com/klimashkin/postcss-assets-webpack-plugin/issues",
"email": "klimashkin@gmail.com"
},
"main": "index.js",
"files": [],
"scripts": {
"lint": "eslint index.js",
"fix": "eslint index.js --fix"
},
"peerDependencies": {
"webpack": "^4.0.0 || ^5.0.0"
},
"devDependencies": {
"eslint": "^7.15.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1"
},
"dependencies": {
"fancy-log": "^1.3.3",
"human-size": "^1.1.0",
"postcss": "^8.2.0",
"webpack-sources": "^2.2.0"
},
"keywords": [
"css",
"assets",
"webpack",
"postcss",
"postcss-loader",
"postcss-assets-webpack-plugin"
],
"engines": {
"node": ">=10.0.0"
},
"eslintConfig": {
"root": true,
"env": {
"node": true,
"es2021": true
},
"extends": [
"airbnb-base"
],
"parserOptions": {
"ecmaVersion": 12
},
"rules": {}
}
}