-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 934 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
43
44
45
46
47
{
"name": "canvas-to-svg",
"version": "0.0.0-development",
"description": "canvas-to-svg",
"files": [
"dist"
],
"publishConfig": {
"access": "public",
"branches": [
"main"
]
},
"main": "./dist/canvas-to-svg.js",
"module": "./dist/canvas-to-svg.modern.js",
"source": "src/index.ts",
"scripts": {
"test": "jest",
"build": "rimraf dist && microbundle",
"dev": "microbundle watch"
},
"keywords": [
"canvas",
"svg",
"canvas-to-svg"
],
"author": "Rob Gordon",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/node": "^16.11.7",
"canvas": "^2.8.0",
"jest": "^27.3.1",
"microbundle": "^0.14.1",
"rimraf": "^3.0.2",
"semantic-release": "^18.0.0",
"ts-jest": "^27.0.7",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
},
"release": {
"branches": [
"main"
]
}
}