-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 980 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 980 Bytes
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
{
"name": "react-countup-timer",
"version": "1.0.1",
"author": "Devi Tse <devitcf@gmail.com>",
"license": "MIT",
"description": "A simple count up timer for react version greater than 16",
"repository": "github:devitcf/react-countup-timer",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"scripts": {
"rollup": "rollup -c",
"prepare": "npm run rollup",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"moment": "^2.18.0"
},
"peerDependencies": {
"react": ">= 16.0.0"
},
"keywords": [
"react",
"countup",
"timer"
],
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.1",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.3.3",
"@types/react": "^18.0.15",
"rollup": "^2.77.2",
"rollup-plugin-dts": "^4.2.2",
"tslib": "^2.4.0",
"typescript": "^4.7.4"
}
}