-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
38 lines (38 loc) · 1018 Bytes
/
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
{
"name": "sass-svg-uri",
"description": "Sass module to encode SVGs as an optimized data URI",
"version": "2.0.0",
"author": "Waldemar Figueroa <[email protected]>",
"bugs": {
"url": "https://github.com/waldemarfm/sass-svg-uri/issues"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"conventional-changelog-conventionalcommits": "^5.0.0",
"mocha": "^10.2.0",
"sass": "^1.60.0",
"sass-true": "^7.0.0",
"semantic-release": "^21.0.1"
},
"files": ["CHANGELOG.md"],
"homepage": "https://github.com/waldemarfm/sass-svg-uri",
"keywords": [
"sass",
"scss",
"svg",
"uri"
],
"license": "ISC",
"main": "_index.scss",
"repository": {
"type": "git",
"url": "https://github.com/waldemarfm/sass-svg-uri.git"
},
"scripts": {
"build-demo": "sass demo/styles.scss demo/styles.css",
"preversion": "npm test",
"semantic-release": "semantic-release",
"test": "mocha"
}
}