forked from glennreyes/react-countup
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.85 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
{
"name": "react-countup",
"version": "6.4.1",
"description": "A React component wrapper around CountUp.js",
"author": "Glenn Reyes <[email protected]> (https://twitter.com/glnnrys)",
"keywords": [
"react-component",
"react",
"react.js",
"countup",
"countup.js",
"counter",
"animation"
],
"license": "MIT",
"repository": "glennreyes/react-countup",
"bugs": {
"url": "https://github.com/glennreyes/react-countup/issues"
},
"homepage": "https://react-countup.now.sh",
"main": "build",
"files": [
"build/index.js",
"build/index.d.ts"
],
"typings": "build/index.d.ts",
"scripts": {
"format": "prettier --write \"*.md\" \"src/**/*.ts\" \"src/**/*.tsx\"",
"build": "rollup --bundleConfigAsCjs -c && tsc --emitDeclarationOnly --noEmit false --project src/tsconfig.json --outDir build",
"prepublishOnly": "yarn build",
"test": "jest"
},
"peerDependencies": {
"react": ">= 16.3.0"
},
"dependencies": {
"@rollup/plugin-babel": "^6.0.2",
"countup.js": "^2.4.1"
},
"devDependencies": {
"@babel/core": "7.20.12",
"@babel/preset-env": "7.20.2",
"@babel/preset-react": "7.18.6",
"@babel/preset-typescript": "^7.14.5",
"@rollup/plugin-node-resolve": "^15.0.1",
"@testing-library/react": "13.4.0",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"babel-jest": "29.4.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "28.1.2",
"jest-environment-jsdom": "^28.1.1",
"prettier": "2.8.3",
"pretty-quick": "3.1.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-test-renderer": "18.2.0",
"rollup": "3.11.0",
"typescript": "^4.9.3"
}
}