-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 864 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
38
39
40
{
"name": "animatum",
"version": "0.3.0",
"description": "A JavaScript library for animating elements between states",
"main": "dist/animatum.js",
"scripts": {
"build": "rollup -w -c ./rollup.config.js",
"test": "jest"
},
"keywords": [
"animation",
"animate",
"css",
"easing",
"transition",
"transform",
"elements",
"states",
"capture"
],
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "git://github.com/owen-m1/Animatum.git"
},
"author": "Owen Mills <owen23355@gmail.com>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.5.4",
"@babel/preset-env": "^7.5.4",
"@babel/preset-typescript": "^7.3.3",
"jest": "^24.8.0",
"rollup": "^1.17.0",
"rollup-plugin-babel": "^4.3.3",
"typescript": "^3.5.3",
"uglify-js": "^3.6.0"
}
}