UNPKG

1.33 kBJSONView Raw
1{
2 "name": "rollup-plugin-css-porter",
3 "version": "0.2.1",
4 "author": "RJ.Hwang <rongjihuang@gmail.com>",
5 "description": "A rollup plugin to collect all the imported css file",
6 "keywords": [
7 "rollup",
8 "rollup-plugin",
9 "css"
10 ],
11 "files": [
12 "README.md",
13 "dist",
14 "src"
15 ],
16 "license": "MIT",
17 "main": "dist/rollup-plugin-css-porter.cjs.js",
18 "jsnext:main": "dist/rollup-plugin-css-porter.es.js",
19 "homepage": "https://github.com/RJHwang/rollup-plugin-css-porter",
20 "bugs": {
21 "url": "https://github.com/RJHwang/rollup-plugin-css-porter/issues"
22 },
23 "repository": {
24 "type": "git",
25 "url": "https://github.com/RJHwang/rollup-plugin-css-porter.git"
26 },
27 "scripts": {
28 "clean": "rm -rf dist test/temp",
29 "test": "ava test/index.js",
30 "pretest": "npm run build",
31 "build": "rollup -c -f cjs -o dist/rollup-plugin-css-porter.cjs.js && rollup -c -f es -o dist/rollup-plugin-css-porter.es.js",
32 "prepublish": "npm test"
33 },
34 "dependencies": {
35 "clean-css": "^4.2.1",
36 "fs-promise": "^1.0.0",
37 "os": "^0.1.1",
38 "path": "^0.12.7",
39 "rollup-pluginutils": "^2.4.1"
40 },
41 "devDependencies": {
42 "ava": "^1.3.1",
43 "rollup": "^0.47.6",
44 "rollup-plugin-buble": "^0.19.6",
45 "rollup-watch": "^4.3.1"
46 }
47}