-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.47 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
{
"name": "tween-svg-path",
"version": "2.0.6",
"description": "High performance & lightweight tween interpolation for svg paths",
"main": "app/dist/tweenSvgPath.js",
"types": "app/dist/tweenSvgPath.d.ts",
"scripts": {
"build": "tsc -p ./tsconfig.prod.json",
"dev": "webpack --config webpack.dev.config.js",
"deploy": "npm run build && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maximilianMairinger/tweenSvgPath.git"
},
"keywords": [
"tween",
"svg",
"path"
],
"author": "Maximilian Mairinger",
"license": "ISC",
"bugs": {
"url": "https://github.com/maximilianMairinger/tweenSvgPath/issues"
},
"homepage": "https://github.com/maximilianMairinger/tweenSvgPath#readme",
"devDependencies": {
"@types/node": "^12.12.38",
"@types/tween.js": "^17.2.0",
"bezier-easing": "^2.1.0",
"css-loader": "^2.1.0",
"cssnano": "^4.1.8",
"front-db": "^1.1.10",
"postcss-loader": "^3.0.0",
"terser-webpack-plugin": "^1.4.3",
"to-string-loader": "^1.1.6",
"ts-loader": "^5.3.3",
"typescript": "^3.8.3",
"url-loader": "^1.1.2",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-inject-plugin": "^1.5.4",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"abs-svg-path": "^0.1.1",
"animation-frame-delta": "^2.4.1",
"normalize-svg-path": "^1.0.1",
"parse-svg-path": "^0.1.2",
"tween-object": "^2.3.5",
"xrray": "^4.6.5"
}
}