forked from postcss/postcss-import
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 928 Bytes
/
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
{
"name": "postcss-import",
"version": "8.0.2",
"description": "PostCSS plugin to import CSS files",
"keywords": [
"css",
"postcss",
"postcss-plugin",
"import",
"node modules",
"npm"
],
"author": "Maxime Thirouin",
"license": "MIT",
"repository": "https://github.com/postcss/postcss-import.git",
"files": [
"index.js",
"lib"
],
"dependencies": {
"object-assign": "^4.0.1",
"postcss": "^5.0.14",
"postcss-value-parser": "^3.2.3",
"read-cache": "^1.0.0",
"resolve": "^1.1.7"
},
"devDependencies": {
"ava": "^0.11.0",
"eslint": "^1.10.3",
"eslint-config-i-am-meticulous": "^2.0.0",
"npmpub": "^3.0.1",
"postcss-scss": "^0.1.3"
},
"scripts": {
"lint": "eslint --fix .",
"pretest": "npm run lint",
"test": "ava",
"release": "npmpub"
},
"eslintConfig": {
"extends": "eslint-config-i-am-meticulous/es5"
}
}