forked from webpack-contrib/postcss-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.45 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
61
62
63
64
{
"name": "postcss-loader",
"version": "2.0.6",
"description": "PostCSS loader for webpack",
"main": "lib/index.js",
"engines": {
"node": ">= 4"
},
"files": [
"lib"
],
"dependencies": {
"loader-utils": "^1.1.0",
"postcss": "^6.0.2",
"postcss-load-config": "^1.2.0",
"schema-utils": "^0.3.0"
},
"devDependencies": {
"coveralls": "^2.13.1",
"fs-extra": "^3.0.1",
"jest": "^20.0.4",
"jsdoc-to-markdown": "^3.0.0",
"postcss-js": "^1.0.0",
"standard": "^10.0.2",
"standard-version": "^4.1.0",
"sugarss": "^1.0.0",
"webpack": "^2.6.1"
},
"scripts": {
"clean": "rm -rf dmd jsdoc-api jest_0 coverage test/builds",
"lint": "standard",
"docs": "jsdoc2md lib/index.js > LOADER.md",
"pretest": "npm run lint && npm run test:build",
"test": "jest",
"test:build": "node test/webpack.build.js",
"posttest": "npm run clean",
"release": "standard-version"
},
"standard": {
"env": {
"jest": true
},
"ignore": [
"*.test.js"
]
},
"keywords": [
"css",
"postcss",
"postcss-runner",
"webpack",
"webpack-loader"
],
"author": "Andrey Sitnik <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/postcss/postcss-loader.git"
},
"bugs": {
"url": "https://github.com/postcss/postcss-loader/issues"
},
"homepage": "https://github.com/postcss/postcss-loader#readme",
"license": "MIT"
}