-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1000 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
40
41
42
{
"name": "svg-visitor",
"version": "0.3.0",
"description": "visit svg element use visitor pattern",
"main": "./dist/src/index.js",
"author": "sz-p <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/sz-p/svg-visitor",
"bugs": "https://github.com/sz-p/svg-visitor/issues",
"dependencies": {},
"keywords": [
"svg-visitor",
"svg",
"visitor"
],
"files": [
"dist/*",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git://github.com/sz-p/svg-visitor"
},
"scripts": {
"prepublishOnly": "yarn test",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"test": "jest"
},
"devDependencies": {
"@types/jest": "^24.0.11",
"@types/jsdom": "^16.2.14",
"conventional-changelog-cli": "^2.2.2",
"dom-parser": "^0.1.6",
"jest": "^24.5.0",
"jsdom": "^20.0.0",
"ts-jest": "^24.0.0",
"tslib": "^2.4.0",
"typescript": "^3.0.3"
}
}