This repository was archived by the owner on Oct 23, 2023. It is now read-only.
forked from elycruz/rollup-plugin-sass
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.3 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.3 KB
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
{
"name": "@clickup/rollup-plugin-sass",
"version": "1.2.2",
"description": "Rollup .sass files.",
"main": "dist/index.js",
"scripts": {
"prepublish": "npm run test",
"pretest": "npm run build",
"build": "rollup -c",
"test": "nyc --reporter=html --reporter=text ava test/*.js -s",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"standard": {
"ignore": [
"dist/",
"test/fixtures/"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/differui/rollup-plugin-sass.git"
},
"keywords": [
"rollup",
"rollup-plugin"
],
"author": "BinRui.Guan <differui@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/differui/rollup-plugin-sass/issues"
},
"homepage": "https://github.com/differui/rollup-plugin-sass#readme",
"files": [
"dist"
],
"dependencies": {
"babel-runtime": "^6.23.0",
"fs-extra": "^0.30.0",
"pify": "^3.0.0",
"resolve": "^1.5.0",
"rollup-pluginutils": ">= 1.3.1",
"sass": "^1.7.2"
},
"devDependencies": {
"ava": "^1.0.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.4.0",
"coveralls": "^3.0.3",
"nyc": "^13.3.0",
"rollup": "^1.0.2",
"rollup-plugin-babel": "^2.7.1",
"sinon": "^7.2.2"
}
}