forked from zz85/timeliner
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.05 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.05 KB
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",
"version": "1.4.0",
"description": "simple js animation timeline library",
"main": "timeliner.js",
"scripts": {
"build": "browserify src/timeliner.js --full-paths=false -t package-json-versionify -o timeliner.js",
"mini": "browserify src/timeliner.js -g uglifyify -t package-json-versionify --full-paths=false -o timeliner.min.js",
"watch": "watchify src/timeliner.js --full-paths=false -t package-json-versionify --debug -o timeliner.js -v",
"start": "npm run watch",
"test": "echo \"Error: no tests :(\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/zz85/timeliner.git"
},
"keywords": [
"timeline",
"animation",
"keyframe",
"tween",
"ease",
"controls",
"gui"
],
"author": "joshua koo",
"license": "MIT",
"bugs": {
"url": "https://github.com/zz85/timeliner/issues"
},
"homepage": "https://github.com/zz85/timeliner",
"devDependencies": {
"do.js": "^1.0.0",
"package-json-versionify": "^1.0.2",
"uglifyify": "^2.6.0"
}
}