-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 866 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 866 Bytes
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
{
"name": "AnimateSVGTextPath",
"version": "1.0.0",
"description": "Demo showing how to animate SVG text on a path on scroll using the Intersection Observer API and SVG filters.",
"main": "index.js",
"scripts": {
"start": "parcel index.html --open",
"clean": "rm -rf dist/*",
"build:parcel": "parcel build index.html --no-minify --no-source-maps --public-url ./",
"build": "npm run clean && npm run build:parcel"
},
"repository": {
"type": "git",
"url": "git://github.com/codrops/AnimateSVGTextPath.git"
},
"keywords": [],
"author": "Codrops",
"license": "MIT",
"homepage": "https://tympanus.net/codrops/2020/02/26/animating-svg-text-on-a-path/",
"bugs": {
"url": "https://github.com/codrops/AnimateSVGTextPath/issues"
},
"dependencies": {
"parcel-bundler": "^1.12.4",
"imagesloaded": "^4.1.4"
}
}