-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.46 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
{
"name": "svg-cairo-ps",
"version": "0.0.5",
"description": "This is a small library to normalise SVG paths use cairo convert to postscript.",
"main": "./lib/index.js",
"scripts": {
"install": "node-gyp rebuild",
"lint": "eslint ./src --fix",
"start": "node index.js",
"rebuild:dev": "node-gyp rebuild --debug",
"clean": "node-gyp clean"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -e $GIT_PARAMS"
}
},
"lint-staged": {
"*.js": [
"eslint --quiet --cache --fix",
"git add"
]
},
"author": "pfan",
"license": "MIT",
"dependencies": {
"svg-path-parse": "^1.1.3"
},
"devDependencies": {
"@commitlint/cli": "^7.0.0",
"@commitlint/config-conventional": "^7.0.1",
"babel-eslint": "^10.0.1",
"chalk": "^2.4.1",
"convertpath": "^1.2.1",
"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-cairo-ps.git"
},
"keywords": [
"convert path",
"path",
"cairo",
"ps",
"postscript",
"normalise SVG paths",
"cairo convert ps",
"c++",
"addon"
],
"bugs": {
"url": "https://github.com/convertSvg/svg-cairo-ps/issues"
},
"homepage": "https://github.com/convertSvg/svg-cairo-ps"
}