-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 908 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 908 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
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"name": "@tchesa/ease",
"version": "0.0.6",
"description": "A tiny javascript easing package with no dependencies.",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "rollup -c",
"test": "jest ./src --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tchesa/ease.git"
},
"keywords": [
"ease",
"easing",
"tween",
"animation"
],
"author": "tchesa",
"license": "ISC",
"bugs": {
"url": "https://github.com/tchesa/ease/issues"
},
"homepage": "https://github.com/tchesa/ease#readme",
"devDependencies": {
"@rollup/plugin-terser": "^0.4.0",
"@rollup/plugin-typescript": "^11.1.0",
"@types/jest": "^29.5.0",
"glob": "^9.3.4",
"jest": "^29.5.0",
"jest-extended": "^3.2.4",
"rollup": "^3.20.2",
"ts-jest": "^29.1.0",
"tslib": "^2.5.0",
"typescript": "^5.0.4"
}
}