forked from haithembelhaj/sass-inline-svg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.3 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
{
"name": "sass-inline-svg",
"version": "1.2.3",
"description": "a node-sass function that inlines svg files",
"main": "index.js",
"scripts": {
"test": "nyc mocha",
"lint": "eslint index.js",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"config": {
"ghooks": {
"pre-push": "npm test",
"pre-commit": "npm run lint",
"post-merge": "npm install",
"post-rewrite": "npm install"
}
},
"repository": {
"type": "git",
"url": "https://github.com/haithembelhaj/sass-inline-svg.git"
},
"keywords": [
"sass",
"svg",
"inline",
"function",
"node-sass"
],
"author": "Haithem Bel Haj",
"license": "ISC",
"bugs": {
"url": "https://github.com/haithembelhaj/sass-inline-svg/issues"
},
"homepage": "https://github.com/haithembelhaj/sass-inline-svg",
"dependencies": {
"css-select": "^1.2.0",
"deasync": "^0.1.7",
"dom-serializer": "^0.1.0",
"htmlparser2": "^3.9.0",
"mini-svg-data-uri": "^1.0.0",
"object-assign": "^4.0.1",
"svgo": "^1.3.0"
},
"devDependencies": {
"chai": "^3.3.0",
"coveralls": "^3.0.0",
"eslint": "^2.1.0",
"ghooks": "^1.0.3",
"mocha": "^5.2.0",
"node-sass": "^4.9.3",
"nyc": "^14.1.1"
},
"peerDependencies": {
"node-sass": "^4.5.3"
}
}