-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.03 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.03 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
{
"name": "wc-sass-render",
"version": "1.4.0",
"description": "Render Sass into importable templates for Typescript or Javascript",
"homepage": "https://github.com/tristanMatthias/wc-sass-render",
"keywords": [
"web",
"components",
"sass",
"render",
"template",
"cli",
"watch"
],
"repository": {
"type": "git",
"url": "https://github.com/tristanMatthias/wc-sass-render"
},
"main": "SassRenderer.js",
"bin": {
"sass-render": "bin/sass-render.js"
},
"author": "Tristan Matthias <hello@tristanmatthias.com>",
"scripts": {
"test": "nyc mocha",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov -t 6d13147b-ff58-48e5-8762-34e48d8fe8c0"
},
"license": "Apache-2.0",
"peerDependencies": {
"sass": "^1.62.1"
},
"dependencies": {
"gaze": "^1.1.3",
"glob": "^10.2.2",
"yargs": "^17.7.2"
},
"devDependencies": {
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"codecov": "^3.8.3",
"mocha": "^10.2.0",
"nyc": "^15.1.0"
}
}