forked from zz85/timeliner
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
37 lines (37 loc) · 956 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
{
"name": "timeliner_gui",
"version": "0.0.2",
"description": "Timeliner GUI",
"main": "timeliner.js",
"scripts": {
"build": "browserify src/*.js --full-path=false -o timeliner_gui.js",
"mini": "browserify src/*.js -g uglifyify --full-path=false -o timeliner_gui.min.js",
"watch": "watchify src/*.js -o timeliner_gui.js -v",
"start": "npm run watch",
"test": "echo \"Error: no tests :(\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/tschw/timeliner_gui.git"
},
"keywords": [
"timeline",
"animation",
"keyframe",
"controls",
"gui"
],
"author": "tschw (the fork)",
"contributors": [
"Joshua 'zz85' Koo (original author)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/tschw/timeliner_gui/issues"
},
"homepage": "https://github.com/tschw/timeliner_gui",
"devDependencies": {
"do.js": "^1.0.0",
"uglifyify": "^2.6.0"
}
}