-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathpackage.json
76 lines (76 loc) · 2.91 KB
/
package.json
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
{
"name": "rollup-plugin-scss",
"version": "4.0.0",
"description": "Rollup multiple .scss, .sass and .css imports",
"main": "index.cjs.js",
"module": "index.es.js",
"jsnext:main": "index.es.js",
"scripts": {
"build": "rollup -c",
"dev": "rollup -cw",
"lint": "standard rollup.config.js index.es.js",
"fix": "prettier --write . ",
"test:node-sass": "cd test/node-sass && rm -f output.* && rollup -c && cmp output.js ../expected.js && cmp output.css expected.css && cd ../..",
"test:sass": "cd test/sass && rm -f output.* && rollup -c && cmp nested/output.js ../expected.js && cmp nested/output.css expected.css && cd ../..",
"test:insert": "cd test/insert && rm -f output.* && rollup -c && cmp output.js expected.js && cd ../..",
"test:postcss": "cd test/postcss && rm -f output.* && rollup -c && cmp output.js ../expected.js && cmp output.css expected.css && cd ../..",
"test:processor": "cd test/processor && rm -f output.* && rollup -c && cmp output.js ../expected.js && cmp output.css expected.css && cd ../..",
"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 ../..",
"test:import-resolution": "cd test/import-resolution && node setup.js && rm -f output.* && rollup -c && node teardown.js && cmp output.js expected.js && cmp output.css expected.css && cd ../..",
"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 && npm run test:import-resolution",
"testw": "cd test/node-sass && rm -f output.* && rollup -cw; cd ..",
"prepare": "rollup -c"
},
"keywords": [
"rollup-plugin",
"css",
"sass",
"scss"
],
"license": "MIT",
"author": "Thomas Ghysels <[email protected]>",
"homepage": "https://github.com/thgh/rollup-plugin-scss",
"bugs": {
"url": "https://github.com/thgh/rollup-plugin-scss/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/thgh/rollup-plugin-scss"
},
"files": [
"index.cjs.js",
"index.d.ts",
"index.es.js"
],
"dependencies": {
"rollup-pluginutils": "^2.3.3"
},
"devDependencies": {
"@types/node": "^14.14.30",
"@types/node-sass": "^4.11.1",
"@types/sass": "^1.16.0",
"autoprefixer": "^9.8.6",
"node-sass": "^8",
"postcss": "^7.0.32",
"prettier": "2",
"rollup": "2",
"rollup-plugin-buble": "0",
"rollup-plugin-typescript2": "^0.34.0",
"sass": "^1.26.3",
"typescript": "^4.1.5"
},
"prettier": {
"arrowParens": "avoid",
"bracketSpacing": true,
"insertPragma": false,
"jsxBracketSameLine": false,
"printWidth": 80,
"proseWrap": "preserve",
"requirePragma": false,
"semi": false,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "none",
"useTabs": false
}
}