-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
69 lines (69 loc) · 2.08 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
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "convertpath",
"version": "1.3.0",
"description": "base svg element convert path",
"main": "./lib/index.js",
"types": "./index.d.ts",
"scripts": {
"parse": "node ./lib/index.js",
"start": "node ./test/index.js",
"test": "jest --coverage",
"major": "git commit -am 'docs: update changelog, version and publish' && standard-version --release-as major && git push --follow-tags origin master && npm publish",
"minor": "git commit -am 'docs: update changelog, version and publish' && standard-version --release-as minor && git push --follow-tags origin master && npm publish",
"patch": "git commit -am 'docs: update changelog, version and publish' && standard-version --release-as patch && git push --follow-tags origin master && npm publish"
},
"author": "pfan",
"license": "ISC",
"husky": {
"hooks": {
"pre-commit": "lint-staged && jest",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.js": [
"eslint --quiet --cache --fix",
"git add"
],
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"html-minifier": "^3.5.21",
"juice": "^5.2.0",
"svg-path-parse": "^1.1.3",
"svgpath": "^2.2.3",
"xmldom": "^0.5.0"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-angular": "^8.3.4",
"@commitlint/config-conventional": "^8.3.4",
"eslint": "^5.14.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"husky": "^1.3.1",
"jest": "^26.0.1",
"lint-staged": "^8.1.4",
"prettier": "^1.16.4",
"standard-version": "^9.0.0"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/pfan123/convertpath.git"
},
"keywords": [
"convert path",
"path",
"convertShapeToPath"
],
"bugs": {
"url": "https://github.com/pfan123/convertpath/issues"
},
"homepage": "https://github.com/pfan123/convertpath#readme"
}