forked from javierbyte/react-number-easing
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.65 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.65 KB
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
{
"name": "che-react-number-easing",
"version": "0.2.0",
"author": "che.wf",
"description": "React component for fancy transition for numbers.",
"repository": {
"type": "git",
"url": "https://github.com/che-wf/react-number-easing"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"main": "dist/index.js",
"scripts": {
"build": "babel src --out-dir dist --extensions .js,.jsx",
"prepublishOnly": "npm run build",
"prepare": "npm run build",
"test": "jest",
"lint": "eslint 'src/**/*.{js,jsx}'",
"format": "prettier --write ."
},
"browserslist": [
"last 2 versions",
"not dead",
"not < 0.5%"
],
"keywords": [
"react",
"react-component",
"component",
"number",
"easing"
],
"license": "ISC",
"dependencies": {
"eases": "^1.0.8",
"prop-types": "^15.8.1"
},
"peerDependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"devDependencies": {
"@babel/cli": "^7.28.3",
"@babel/core": "^7.23.9",
"@babel/eslint-parser": "^7.28.0",
"@babel/preset-env": "^7.23.9",
"@babel/preset-react": "^7.23.3",
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "^16.3.0",
"babel-loader": "^9.1.3",
"eslint": "^8.56.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"html-webpack-plugin": "^5.5.3",
"jest": "^30.0.5",
"jest-environment-jsdom": "^30.0.5",
"prettier": "^3.6.2",
"webpack": "^5.88.2",
"webpack-dev-server": "^5.2.2"
}
}