-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 933 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
{
"name": "scrolltween",
"description": "Yet another tweening helper for the browser.",
"version": "0.0.8-beta",
"keywords": [
"interpolate",
"interpolation",
"color",
"tween",
"tweening",
"scroll"
],
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/christiandrey/scrolltween.git",
"author": "christiandrey <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"build": "rollup --config"
},
"dependencies": {
"@medv/finder": "^1.1.2",
"fast-memoize": "^2.5.1",
"polate-js": "^1.0.5",
"rematrix": "^0.4.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^11.0.1",
"@rollup/plugin-node-resolve": "^7.0.0",
"@types/node": "^13.1.7",
"@wessberg/rollup-plugin-ts": "^1.2.13",
"rollup": "^1.29.0",
"rollup-plugin-terser": "^5.2.0",
"tslib": "^1.10.0",
"typescript": "^3.7.5"
}
}