-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.15 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
{
"name": "tween-party",
"version": "1.0.0",
"description": "ioschool.is learning tutorial on tweening graphics",
"main": "index.js",
"scripts": {
"start": "beefy index.js:bundle.js 5000 --live",
"build": "browserify index.js -o bundle.js -g uglifyify",
"test": "run-browser 'test/*' -b",
"deploy": "npm run build && gh-pages-deploy"
},
"browserify": {
"transform": []
},
"gh-pages-deploy": {
"staticpath": "."
},
"repository": {
"type": "git",
"url": "https://github.com/ioschool/tween-party"
},
"author": "ioschool",
"license": "ISC",
"bugs": {
"url": "https://github.com/ioschool/tween-party/issues"
},
"homepage": "https://github.com/ioschool/tween-party",
"dependencies": {
"dom-select": "0.0.0",
"keycode": "^2.0.0",
"random-number-in-range": "^1.0.0",
"svg-node": "^1.0.0",
"tweenr": "^2.1.3",
"xtend": "^4.0.0"
},
"devDependencies": {
"beefy": "latest",
"browserify": "latest",
"gh-pages-deploy": "latest",
"run-browser": "^2.0.2",
"synthetic-dom-events": "^0.2.2",
"tape": "^3.5.0",
"uglifyify": "latest",
"watchify": "latest"
}
}