-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.27 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
{
"name": "tomu-animation",
"version": "1.0.0",
"description": "animation for tomu",
"main": "animation.js",
"scripts": {
"deploy": "gh-pages -d dist",
"build": "run-s clean build:pack build:embed build:minify",
"build:embed": "node bin/embed.js -j obj/main.js -s src/character.svg -o obj/character.inline.svg",
"build:pack": "webpack --mode production -o obj/main.js",
"build:minify": "svgo obj/character.inline.svg -o dist/character-anim.svg",
"clean": "rimraf ./obj && rimraf ./dist",
"watch": "npm-watch"
},
"watch": {
"build": "src/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nturley/tomu-animation.git"
},
"keywords": [
"svg",
"animation",
"tomu"
],
"author": "Neil Turley",
"license": "MIT",
"bugs": {
"url": "https://github.com/nturley/tomu-animation/issues"
},
"homepage": "https://github.com/nturley/tomu-animation#readme",
"devDependencies": {
"command-line-args": "^5.1.1",
"gh-pages": "^2.1.1",
"imports-loader": "^0.8.0",
"jsdom": "^15.1.1",
"npm-run-all": "^4.1.5",
"npm-watch": "^0.6.0",
"rimraf": "^3.0.0",
"svgo": "^1.3.0",
"webpack": "^4.40.2",
"webpack-cli": "^3.3.8"
},
"dependencies": {
"snapsvg": "^0.5.1"
}
}