-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 803 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 803 Bytes
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
{
"name": "@rojo2/interpolation",
"version": "1.0.0",
"description": "Utility functions to use `linear`, `quadratic` and `cubic` interpolation.",
"main": "dist/interpolation.js",
"module": "dist/interpolation.esm.js",
"scripts": {
"build": "rollup -c rollup.config.js",
"test": "mocha --require @babel/register --require chai/register-expect --recursive src/*.spec.js"
},
"repository": {
"type": "git",
"url": "[email protected]:rojo2/interpolation.git"
},
"keywords": ["interpolation"],
"author": "rojo2 <[email protected]> (https://rojo2.com)",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@babel/register": "^7.12.1",
"chai": "^4.2.0",
"mocha": "^8.2.0",
"rollup": "^2.32.0"
}
}