UNPKG

1.1 kBJSONView Raw
1{
2 "name": "rollup-plugin-scss",
3 "version": "1.0.1",
4 "description": "Rollup multiple .scss, .sass and .css imports",
5 "main": "index.cjs.js",
6 "module": "index.es.js",
7 "jsnext:main": "index.es.js",
8 "scripts": {
9 "build": "rollup -c",
10 "dev": "rollup -cw",
11 "lint": "standard rollup.config.js index.es.js",
12 "test": "cd test && rm -f output.* && rollup -c && cmp output.js expected.js && cmp output.css expected.css && cd ..",
13 "prepare": "rollup -c"
14 },
15 "keywords": [
16 "rollup-plugin",
17 "css",
18 "sass",
19 "scss"
20 ],
21 "license": "MIT",
22 "author": "Thomas Ghysels <info@thomasg.be>",
23 "homepage": "https://github.com/thgh/rollup-plugin-scss",
24 "bugs": {
25 "url": "https://github.com/thgh/rollup-plugin-scss/issues"
26 },
27 "repository": {
28 "type": "git",
29 "url": "https://github.com/thgh/rollup-plugin-scss"
30 },
31 "files": [
32 "index.cjs.js",
33 "index.es.js"
34 ],
35 "dependencies": {
36 "node-sass": "4",
37 "rollup-pluginutils": "2"
38 },
39 "devDependencies": {
40 "rollup": "1",
41 "rollup-plugin-buble": "0",
42 "standard": "^12.0.1"
43 }
44}