This repository was archived by the owner on Aug 11, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.32 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.32 KB
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
{
"name": "postcss-assets",
"version": "6.0.0",
"description": "PostCSS plugin to manage assets",
"keywords": [
"assets",
"base64",
"css",
"image",
"path",
"postcss",
"postcss-plugin",
"size",
"url"
],
"bugs": "https://github.com/assetsjs/assets/issues",
"license": "MIT",
"author": "Vadym Borodin <borodean@gmail.com> (http://borodean.com)",
"contributors": [
"Alexey Plutalov (https://github.com/demiazz)",
"Andrey Sitnik (https://github.com/ai)",
"Dave Clayton (https://github.com/davedx)",
"Ivan Vlasenko (https://github.com/avanes)",
"Liucw (https://github.com/booxood)",
"Pascal Duez (https://github.com/pascalduez)"
],
"main": "./lib",
"repository": "assetsjs/postcss-assets",
"scripts": {
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"test": "eslint --ignore-path .gitignore . && nyc --reporter=text --reporter=html ava"
},
"dependencies": {
"assets": "^3.0.0",
"postcss-functions": "^4.0.2"
},
"devDependencies": {
"ava": "^3.15.0",
"coveralls": "^3.1.0",
"eslint": "^7.26.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.7.0",
"nyc": "^15.1.0",
"postcss": "^8.2.15"
},
"peerDependencies": {
"postcss": "^8.2.15"
},
"engines": {
"node": ">=10"
}
}