-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
57 lines (57 loc) · 1.29 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
{
"name": "react-odometerjs",
"version": "3.1.3",
"description": "Odometer.js as a React component",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/",
"LICENSE.MD",
"README.MD"
],
"repository": {
"type": "git",
"url": "git+https://github.com/bezenson/react-odometerjs.git"
},
"keywords": [
"react",
"component",
"odometer",
"hubspot",
"js",
"react-component",
"javascript",
"typescript",
"counter"
],
"author": "Vladislav Bezenson",
"license": "MIT",
"bugs": {
"url": "https://github.com/bezenson/react-odometerjs/issues"
},
"homepage": "https://github.com/bezenson/react-odometerjs#readme",
"dependencies": {
"odometer": "^0.4.8"
},
"peerDependencies": {
"react": ">= 16.8.0",
"react-dom": ">= 16.8.0"
},
"devDependencies": {
"@types/eslint": "^8",
"@types/react": "^18.0.26",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"eslint": "^8.56.0",
"eslint-plugin-react": "^7.33.2",
"react": ">= 16.8.0",
"react-dom": ">= 16.8.0",
"typescript": "^5.3.3"
},
"scripts": {
"build": "rm -rf dist/ && tsc",
"lint": "eslint .",
"prepublish": "npm run build"
},
"packageManager": "[email protected]"
}