forked from thgh/rollup-plugin-scss
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.4 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
{
"name": "rollup-plugin-scss",
"version": "2.1.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": "standard --fix rollup.config.js index.es.js",
"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 output.js ../expected.js && cmp output.css expected.css && cd ../..",
"test": "npm run test:node-sass && npm run test:sass",
"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.es.js"
],
"dependencies": {
"rollup-pluginutils": "2"
},
"devDependencies": {
"rollup": "1",
"rollup-plugin-buble": "0",
"standard": "14"
},
"peerDependencies": {
"node-sass": "4",
"sass": "1.26.2"
}
}