forked from egoist/rollup-plugin-postcss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 1.92 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "rollup-plugin-postcss",
"version": "2.0.3",
"description": "Seamless integration between Rollup and PostCSS",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"test": "npm run lint && jest",
"test:cov": "npm run lint && jest --coverage",
"build": "bili",
"lint": "xo",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/egoist/rollup-plugin-postcss.git"
},
"keywords": [
"postcss",
"rollup"
],
"author": "EGOIST <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/egoist/rollup-plugin-postcss/issues"
},
"engines": {
"node": ">=6"
},
"homepage": "https://github.com/egoist/rollup-plugin-postcss#readme",
"devDependencies": {
"@babel/core": "^7.2.2",
"autoprefixer": "^7.2.4",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"bili": "^4.2.4",
"eslint-config-rem": "^4.0.0",
"fs-extra": "^7.0.1",
"jest": "^23.6.0",
"less": "^2.7.3",
"node-sass": "^4.7.2",
"rollup": "^1.1.2",
"stylus": "^0.54.5",
"sugarss": "^1.0.1",
"xo": "^0.18.2"
},
"dependencies": {
"chalk": "^2.4.2",
"concat-with-sourcemaps": "^1.0.5",
"cssnano": "^4.1.8",
"import-cwd": "^2.1.0",
"p-queue": "^2.4.2",
"pify": "^3.0.0",
"postcss": "^7.0.14",
"postcss-load-config": "^2.0.0",
"postcss-modules": "^1.4.1",
"promise.series": "^0.2.0",
"reserved-words": "^0.1.2",
"resolve": "^1.5.0",
"rollup-pluginutils": "^2.0.1",
"style-inject": "^0.3.0"
},
"xo": {
"extends": "rem",
"envs": [
"jest"
],
"rules": {
"import/prefer-default-export": 0
}
},
"jest": {
"testEnvironment": "node"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "6"
}
}
]
]
}
}