-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
39 lines (39 loc) · 927 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
39
{
"name": "posthtml-inline-svg",
"version": "0.2.0",
"description": "Inline svg icons in HTML",
"keywords": [
"posthtml",
"posthtml-plugin",
"html",
"postproccessor",
"svg"
],
"author": "Andrey Khokhlov <andrey@hohlov.pro>",
"repository": {
"type": "git",
"url": "git@github.com:andrey-hohlov/posthtml-inline-svg.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/andrey-hohlov/posthtml-inline-svg/issues"
},
"homepage": "https://github.com/andrey-hohlov/posthtml-inline-svg",
"dependencies": {
"posthtml": "^0.12.3",
"svgo": "^1.3.2"
},
"devDependencies": {
"eslint": "^6.8.0",
"expect": "^24.9.0",
"mocha": "^6.2.3",
"standard-version": "^7.1.0"
},
"main": "index.js",
"scripts": {
"lint": "eslint *.js test/",
"pretest": "npm run lint",
"test": "mocha --check-leaks",
"release": "standard-version"
}
}