forked from egoist/rollup-plugin-postcss
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.1 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 2.1 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
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
90
91
92
93
94
{
"name": "rollup-plugin-postcss",
"version": "0.5.5",
"description": "Seamless integration between Rollup and PostCSS",
"main": "dist/index.common.js",
"files": [
"dist"
],
"scripts": {
"test": "BABEL_ENV=test ava test/test.js && npm run lint && npm run build",
"build": "bili --name index",
"lint": "xo",
"fix": "xo --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/egoist/rollup-plugin-postcss.git"
},
"keywords": [
"postcss",
"rollup"
],
"author": "EGOIST <0x142857@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/egoist/rollup-plugin-postcss/issues"
},
"homepage": "https://github.com/egoist/rollup-plugin-postcss#readme",
"devDependencies": {
"ava": "^0.19.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.5.1",
"babel-preset-es2015": "^6.16.0",
"babel-preset-stage-2": "^6.16.0",
"babel-register": "^6.9.0",
"bili": "^0.15.3",
"browser-env": "^2.0.31",
"eslint-config-rem": "^3.1.0",
"postcss-modules": "^0.8.0",
"postcss-nested": "^2.0.2",
"require-from-string": "^1.1.0",
"rimraf": "^2.6.1",
"rollup": "^0.49.2",
"rollup-plugin-babel": "^2.6.1",
"stylus": "^0.54.5",
"sugarss": "^1.0.0",
"xo": "^0.18.2"
},
"dependencies": {
"chalk": "^1.1.3",
"concat-with-sourcemaps": "^1.0.4",
"fs-extra": "^3.0.1",
"postcss": "^6.0.1",
"reserved-words": "^0.1.1",
"rollup-pluginutils": "^2.0.1",
"style-inject": "^0.1.0"
},
"ava": {
"require": [
"babel-register",
"./test/helpers/set-browser-env.js"
],
"babel": "inherit"
},
"xo": {
"extends": "rem/prettier",
"envs": [
"browser"
],
"ignores": [
"**/dist/**",
"**/output/**"
]
},
"babel": {
"env": {
"test": {
"presets": [
[
"env",
{
"targets": {
"node": "current"
}
}
]
],
"plugins": [
"transform-runtime"
]
}
}
}
}