UNPKG

2.75 kBJSONView Raw
1{
2 "name": "rollup-plugin-scss",
3 "version": "4.0.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": "prettier --write . ",
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 nested/output.js ../expected.js && cmp nested/output.css expected.css && cd ../..",
15 "test:insert": "cd test/insert && rm -f output.* && rollup -c && cmp output.js expected.js && cd ../..",
16 "test:postcss": "cd test/postcss && rm -f output.* && rollup -c && cmp output.js ../expected.js && cmp output.css expected.css && cd ../..",
17 "test:processor": "cd test/processor && rm -f output.* && rollup -c && cmp output.js ../expected.js && cmp output.css expected.css && cd ../..",
18 "test:sourcemap": "cd test/sourcemap && rm -f output.* && rollup -c && cmp output.js ../expected.js && cmp nested/output.css expected.css && cmp nested/output.css.map expected.css.map && cd ../..",
19 "test": "npm run test:node-sass && npm run test:sass && npm run test:processor && npm run test:postcss && npm run test:sourcemap && npm run test:insert",
20 "testw": "cd test/node-sass && rm -f output.* && rollup -cw; cd ..",
21 "prepare": "rollup -c"
22 },
23 "keywords": [
24 "rollup-plugin",
25 "css",
26 "sass",
27 "scss"
28 ],
29 "license": "MIT",
30 "author": "Thomas Ghysels <info@thomasg.be>",
31 "homepage": "https://github.com/thgh/rollup-plugin-scss",
32 "bugs": {
33 "url": "https://github.com/thgh/rollup-plugin-scss/issues"
34 },
35 "repository": {
36 "type": "git",
37 "url": "https://github.com/thgh/rollup-plugin-scss"
38 },
39 "files": [
40 "index.cjs.js",
41 "index.d.ts",
42 "index.es.js"
43 ],
44 "dependencies": {
45 "rollup-pluginutils": "^2.3.3"
46 },
47 "devDependencies": {
48 "@types/node": "^14.14.30",
49 "@types/node-sass": "^4.11.1",
50 "@types/sass": "^1.16.0",
51 "autoprefixer": "^9.8.6",
52 "node-sass": "^8",
53 "postcss": "^7.0.32",
54 "prettier": "2",
55 "rollup": "2",
56 "rollup-plugin-buble": "0",
57 "rollup-plugin-typescript2": "^0.30.0",
58 "sass": "^1.26.3",
59 "typescript": "^4.1.5"
60 },
61 "prettier": {
62 "arrowParens": "avoid",
63 "bracketSpacing": true,
64 "insertPragma": false,
65 "jsxBracketSameLine": false,
66 "printWidth": 80,
67 "proseWrap": "preserve",
68 "requirePragma": false,
69 "semi": false,
70 "singleQuote": true,
71 "tabWidth": 2,
72 "trailingComma": "none",
73 "useTabs": false
74 }
75}