forked from vydimitrov/react-countdown-circle-timer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.77 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.77 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
66
67
68
69
{
"name": "@clouxart/react-circle-timer",
"version": "0.0.2",
"private": true,
"description": "Lightweight React/React Native countdown timer component with color and progress animation based on SVG",
"workspaces": [
"packages/*"
],
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"scripts": {
"build": "lerna run build",
"bootstrap": "lerna bootstrap",
"test": "lerna run test",
"test-coverage": "lerna run test-coverage",
"dev:push": "lerna run dev:push",
"lint": "eslint --ext js,jsx ."
},
"homepage": "https://github.com/Clouxart/react-countdown-circle-timer#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Clouxart/react-countdown-circle-timer.git"
},
"keywords": [
"react",
"react native",
"countdown",
"timer",
"circle",
"clock",
"SVG"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@babel/core": "7.15.0",
"@babel/preset-env": "7.15.0",
"@babel/preset-react": "7.14.5",
"babel-loader": "8.2.2",
"codecov": "3.8.3",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-config-standard": "16.0.3",
"eslint-plugin-import": "2.24.2",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "3.4.1",
"eslint-plugin-react": "7.24.0",
"eslint-plugin-react-hooks": "4.2.0",
"husky": "7.0.2",
"jest": "27.1.0",
"lerna": "4.0.0",
"lint-staged": "11.1.2",
"path": "0.12.7",
"prettier": "2.3.2",
"prop-types": "15.7.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-test-renderer": "17.0.2",
"webpack": "5.51.1",
"webpack-cli": "4.8.0"
},
"lint-staged": {
"*.{js,jsx}": "eslint --fix"
},
"dependencies": {
"semver": "^7.3.5"
}
}