forked from jossmac/interpolate-range
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 963 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
{
"name": "interpolate-range",
"version": "2.1.1",
"description": "Super simple numeric range interpolation",
"main": "bundle.js",
"repository": "https://github.com/jossmac/interpolate-range.git",
"author": "Joss Mackison",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"babel-tape-runner": "^2.0.1",
"rollup": "^0.52.0",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-uglify": "^2.0.1",
"tape": "^4.8.0",
"uglify-es": "^3.2.0"
},
"scripts": {
"test": "BABEL_ENV=test babel-tape-runner test",
"build": "BABEL_ENV=production rollup -c",
"prepublish": "npm run build"
},
"keywords": [
"linear",
"interpolation",
"lerp",
"range",
"animation",
"animate"
]
}