-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
60 lines (60 loc) · 1.27 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
{
"name": "postcss-easy-import",
"version": "4.0.0",
"description": "PostCSS plugin to inline @import rules content with extra features",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"import",
"glob",
"partial"
],
"author": "Bogdan Chadkin <trysound@yandex.ru>",
"contributors": [
{
"name": "Simon Smith",
"url": "https://simonsmith.io",
"email": "me@simonsmith.io"
}
],
"license": "MIT",
"repository": "TrySound/postcss-easy-import",
"bugs": {
"url": "https://github.com/TrySound/postcss-easy-import/issues"
},
"homepage": "https://github.com/TrySound/postcss-easy-import",
"dependencies": {
"globby": "^6.1.0",
"is-glob": "^4.0.0",
"lodash": "^4.17.4",
"object-assign": "^4.0.1",
"pify": "^3.0.0",
"postcss-import": "^14.0.0",
"resolve": "^1.1.7"
},
"devDependencies": {
"ava": "^0.19.1",
"eslint": "^3.11.1",
"eslint-config-postcss": "^2.0.0",
"postcss": "^8.4.6"
},
"peerDependencies":{
"postcss": "^8.4.6"
},
"files": [
"index.js",
"lib"
],
"scripts": {
"test": "ava",
"posttest": "eslint .",
"prepublish": "npm test"
},
"eslintConfig": {
"extends": "postcss/es5"
},
"engines": {
"node": ">=10.0.0"
}
}