forked from zz85/timeliner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.03 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
{
"name": "timeliner",
"version": "1.5.0",
"description": "simple js animation timeline library",
"main": "timeliner.js",
"scripts": {
"build": "rollup src/timeliner.js > build/timeliner.js",
"mini": "rollup -c rollup.config.js",
"watch": "watchify src/timeliner.js --full-paths=false -t package-json-versionify --debug -o timeliner.js -v",
"start": "npm run watch",
"lint": "eslint src/",
"fix": "eslint --fix src/",
"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",
"rollup": "^2.10.2",
"rollup-plugin-terser": "^5.3.0"
},
"dependencies": {
"eslint": "^7.0.0"
}
}