-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.29 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.29 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
{
"name": "postcss-import-ext-glob",
"version": "2.1.1",
"description": "A PostCSS plugin to extend postcss-import path resolver to allow glob usage as path",
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/dimitrinicolas/postcss-import-ext-glob.git"
},
"author": "Dimitri NICOLAS <dimitri@ooeo.fr>",
"keywords": [
"front-end",
"postcss",
"import",
"extension",
"glob",
"postcss-plugin"
],
"bugs": {
"url": "https://github.com/dimitrinicolas/postcss-import-ext-glob/issues"
},
"homepage": "https://github.com/dimitrinicolas/postcss-import-ext-glob",
"scripts": {
"lint": "eslint **/*.js",
"test": "nyc --reporter=lcov --reporter=text ava",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"dev": "nodemon -e js -x \"npm run test\""
},
"dependencies": {
"fast-glob": "^3.2.12",
"fast-sort": "^3.2.0",
"postcss-value-parser": "^4.2.0"
},
"devDependencies": {
"ava": "^5.1.0",
"ava-postcss-tester": "^1.1.1",
"babel-eslint": "^10.1.0",
"coveralls": "^3.1.1",
"eslint": "^8.28.0",
"nodemon": "^2.0.20",
"nyc": "^15.1.0",
"postcss": "^8.4.19",
"postcss-import": "^15.0.0"
},
"peerDependencies": {
"postcss": "^8.2.0"
}
}