-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 2.04 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "additween",
"version": "3.0.0",
"description": "Additive tweening library for smooth animations",
"main": "dist/additween.min.js",
"module": "dist/additween.mjs",
"types": "dist/typings/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prepublishOnly": "cross-env NODE_ENV=production npm run build",
"clean": "rimraf dist",
"build": "run-s build:*",
"build:minified": "cross-env NODE_ENV=production rollup --config",
"build:normal": "rollup --config",
"build:typings": "tsc -p tsconfig.build.json --emitDeclarationOnly",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"format": "prettier --write '**/*.{ts,tsx,js,jsx,css,md,yml}'",
"test": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bhovhannes/additween.git"
},
"keywords": [
"additive",
"tweening",
"animation",
"state",
"easing"
],
"author": "Hovhannes Babayan <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bhovhannes/additween/issues"
},
"homepage": "https://github.com/bhovhannes/additween#readme",
"devDependencies": {
"@evilmartians/lefthook": "1.10.10",
"@babel/core": "7.26.9",
"@babel/plugin-transform-runtime": "7.26.9",
"@babel/preset-env": "7.26.9",
"@babel/preset-typescript": "7.26.0",
"@babel/runtime": "7.26.9",
"@bhovhannes/shared-config": "0.0.1",
"@jest/globals": "29.7.0",
"@rollup/plugin-babel": "6.0.4",
"@rollup/plugin-commonjs": "28.0.2",
"@rollup/plugin-node-resolve": "16.0.0",
"@rollup/plugin-terser": "0.4.4",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"@babel/eslint-parser": "7.26.8",
"cross-env": "7.0.3",
"eslint": "8.57.1",
"eslint-config-prettier": "10.0.1",
"eslint-plugin-jest": "28.11.0",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"npm-run-all2": "7.0.2",
"prettier": "3.5.1",
"rimraf": "6.0.1",
"rollup": "4.34.7",
"typescript": "5.7.3"
}
}