UNPKG

1.88 kBJSONView Raw
1{
2 "name": "rollup-plugin-scss",
3 "version": "2.6.0",
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 "fix": "standard --fix rollup.config.js index.es.js",
13 "test:node-sass": "cd test/node-sass && rm -f output.* && rollup -c && cmp output.js ../expected.js && cmp output.css expected.css && cd ../..",
14 "test:sass": "cd test/sass && rm -f output.* && rollup -c && cmp output.js ../expected.js && cmp output.css expected.css && cd ../..",
15 "test:postcss": "cd test/postcss && rm -f output.* && rollup -c && cmp output.js ../expected.js && cmp output.css expected.css && cd ../..",
16 "test:processor": "cd test/processor && rm -f output.* && rollup -c && cmp output.js ../expected.js && cmp output.css expected.css && cd ../..",
17 "test": "npm run test:node-sass && npm run test:sass && npm run test:processor && npm run test:postcss",
18 "testw": "cd test/node-sass && rm -f output.* && rollup -cw; cd ..",
19 "prepare": "rollup -c"
20 },
21 "keywords": [
22 "rollup-plugin",
23 "css",
24 "sass",
25 "scss"
26 ],
27 "license": "MIT",
28 "author": "Thomas Ghysels <info@thomasg.be>",
29 "homepage": "https://github.com/thgh/rollup-plugin-scss",
30 "bugs": {
31 "url": "https://github.com/thgh/rollup-plugin-scss/issues"
32 },
33 "repository": {
34 "type": "git",
35 "url": "https://github.com/thgh/rollup-plugin-scss"
36 },
37 "files": [
38 "index.cjs.js",
39 "index.es.js"
40 ],
41 "dependencies": {
42 "node-sass": "4",
43 "rollup-pluginutils": "2"
44 },
45 "devDependencies": {
46 "autoprefixer": "^9.8.6",
47 "postcss": "^7.0.32",
48 "rollup": "2",
49 "rollup-plugin-buble": "0",
50 "sass": "^1.26.3",
51 "standard": "14"
52 }
53}