-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.28 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
{
"name": "svg-path-parse",
"version": "1.1.3",
"description": "This is a small library to normalise SVG paths based on those normalised paths.",
"main": "./lib/path_parse.js",
"scripts": {
"lint": "eslint ./src --fix",
"start": "node index.js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -e $GIT_PARAMS"
}
},
"lint-staged": {
"*.js": [
"eslint --quiet --cache --fix",
"git add"
],
"ignore": ["./lib/matrix.js"]
},
"author": "pfan",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@commitlint/cli": "^7.0.0",
"@commitlint/config-conventional": "^7.0.1",
"babel-eslint": "^10.0.1",
"chalk": "^2.4.1",
"convertpath": "^1.2.2",
"eslint": "^4.19.1",
"eslint-config-o2team": "^0.1.6",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-react": "^7.8.2",
"husky": "^1.0.0-rc.13",
"lint-staged": "^7.2.0"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com:convertSvg/svg-path-parse.git"
},
"keywords": [
"convert path",
"path",
"normalise SVG paths"
],
"bugs": {
"url": "https://github.com/convertSvg/svg-path-parse/issues"
},
"homepage": "https://github.com/convertSvg/svg-path-parse"
}