-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 957 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
41
42
{
"name": "nimate",
"version": "1.4.0",
"description": "A simple, flexible animation library.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"test:watch": "jest --watch",
"coverage": "jest --coverage",
"prepare": "npm run build",
"lint": "eslint 'src/**/*.{ts,tsx}'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/4ver/nimate.git"
},
"keywords": [
"animation",
"tween",
"sequence",
"easing",
"javascript",
"typescript"
],
"author": "Donal Linehan",
"license": "MIT",
"dependencies": {
"eventemitter3": "^5.0.1",
"framesync": "^6.1.2",
"ts-easing": "^0.2.0"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.14.1",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.5"
}
}