forked from webpack-contrib/postcss-loader
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.22 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
{
"name": "postcss-loader",
"version": "3.0.0",
"description": "PostCSS loader for webpack",
"main": "src/index.js",
"files": [
"src"
],
"engines": {
"node": ">= 6"
},
"dependencies": {
"loader-utils": "^1.1.0",
"postcss": "^7.0.0",
"postcss-load-config": "^2.0.0",
"schema-utils": "^1.0.0"
},
"devDependencies": {
"@webpack-utilities/test": "^1.0.0-alpha.0",
"jest": "^23.0.0",
"jsdoc-to-markdown": "^4.0.0",
"postcss-import": "^11.0.0",
"postcss-js": "^2.0.0",
"standard": "^11.0.0",
"standard-version": "^4.0.0",
"sugarss": "^1.0.0",
"webpack": "^4.0.0"
},
"scripts": {
"lint": "standard --env jest",
"test": "jest --env node --verbose --coverage",
"docs": "jsdoc2md src/*.js > docs/LOADER.md",
"clean": "rm -rf coverage test/outputs",
"release": "standard-version"
},
"keywords": [
"css",
"postcss",
"postcss-runner",
"webpack",
"webpack-loader"
],
"author": "Andrey Sitnik <[email protected]>",
"repository": "https://github.com/postcss/postcss-loader.git",
"bugs": "https://github.com/postcss/postcss-loader/issues",
"homepage": "https://github.com/postcss/postcss-loader#readme",
"license": "MIT"
}