forked from sLeeNguyen/react-flip-clock-countdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 2.97 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@leenguyen/react-flip-clock-countdown",
"version": "1.5.0",
"description": "A 3D animated countdown component for React.",
"author": "leenguyen",
"license": "MIT",
"repository": "https://github.com/sLeeNguyen/react-flip-clock-countdown",
"bugs": {
"url": "https://github.com/sLeeNguyen/react-flip-clock-countdown/issues"
},
"homepage": "https://github.com/sLeeNguyen/react-flip-clock-countdown#readme",
"main": "dist/index.js",
"module": "dist/index.modern.js",
"types": "dist/index.d.ts",
"source": "src/index.ts",
"engines": {
"node": ">=12"
},
"keywords": [
"react",
"typescript",
"countdown",
"flip-clock",
"react-component"
],
"scripts": {
"build": "microbundle-crl --raw --no-generateTypes --format modern,cjs",
"start": "microbundle-crl watch --raw --no-generateTypes --format modern,cjs",
"prepare": "run-s build && husky install",
"test": "run-s test:unit test:lint test:build",
"test:build": "run-s build",
"test:lint": "eslint src/*.{ts,tsx}",
"test:unit": "cross-env CI=1 react-scripts test --env=jsdom",
"test:watch": "react-scripts test --env=jsdom",
"predeploy": "cd examples/react-app && npm install && npm run build",
"deploy": "gh-pages -d examples/build",
"lint:staged": "lint-staged"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --fix",
"*.{ts,js,jsx,tsx,json,yml,md}": [
"prettier --write"
]
},
"dependencies": {
"clsx": "^1.1.1"
},
"peerDependencies": {
"react": ">= 16.13.0"
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@commitlint/cli": "^16.0.0",
"@commitlint/config-conventional": "^16.0.0",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.5.3",
"@types/node": "^12.12.38",
"@types/react": ">=16.9.27",
"@types/react-dom": ">=16.9.7",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"babel-eslint": "^10.0.3",
"commitizen": "^4.2.4",
"cross-env": "^7.0.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^6.8.0 || ^7.5.0",
"eslint-config-prettier": "^6.7.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-standard": "^5.0.0",
"gh-pages": "^2.2.0",
"husky": "^7.0.4",
"lint-staged": "^12.1.4",
"microbundle-crl": "^0.13.10",
"npm-run-all": "^4.1.5",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-preset-env": "^9.3.0",
"prettier": "^2.0.4",
"react": ">= 16.13.0",
"react-dom": ">= 16.13.0",
"react-scripts": "^3.4.1 || >= 4.0.3",
"typescript": "^3.7.5"
},
"files": [
"dist",
"package.json",
"README.md",
"LICENSE"
]
}