-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.67 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
{
"name": "react-ui-icheck",
"description": "iCheck customizable checkboxes and radios built with React.",
"version": "1.0.0-alpha",
"author": {
"name": "Victor Popkov",
"email": "[email protected]"
},
"dependencies": {
"classnames": "^2.5.1",
"is-mobile": "^4.0.0",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@actions/core": "^1.10.1",
"@babel/cli": "^7.24.7",
"@babel/core": "^7.24.7",
"@babel/eslint-parser": "^7.24.7",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.24.7",
"@babel/preset-react": "^7.24.7",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^15.0.1",
"@types/jest": "^29.5.12",
"babel-eslint": "^10.1.0",
"caniuse-lite": "^1.0.30001638",
"codecov": "^3.8.3",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.3",
"expect": "^29.7.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jsdom": "^24.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.2",
"prettier-eslint": "^16.3.0",
"yarn-audit-fix": "^10.0.7",
"yarn-deduplicate": "^6.0.2"
},
"engines": {
"node": ">=18.0.0"
},
"esnext": "src/index.js",
"files": [
"lib/",
"src/"
],
"homepage": "https://github.victorpopkov.com/react-ui-icheck/",
"keywords": [
"checkbox",
"form",
"icheck",
"input",
"radio",
"react",
"react-ui-icheck",
"switch",
"toggle",
"ui"
],
"license": "MIT",
"main": "lib/index.js",
"peerDependencies": {
"react": "^16"
},
"repository": {
"type": "git",
"url": "github:victorpopkov/react-ui-icheck"
},
"scripts": {
"audit:fix": "yarn-audit-fix",
"build": "cross-env BABEL_ENV=production NODE_ENV=production babel ./src/ -d ./lib/ --ignore='./**/*.spec.jsx'",
"ci:eslint": "eslint --ext='js,jsx' --format='./.github/eslint-output.js' .",
"ci:prettier": "node ./.github/prettier-output.js",
"ci:test": "jest --coverage --coverageReporters='json-summary' --ci --reporters='./.github/jest-output.js'",
"clean": "rm -Rf ./coverage/ ./lib/",
"deduplicate": "yarn-deduplicate",
"lint": "npm-run-all --continue-on-error lint:*",
"lint:eslint": "eslint --ext='js,jsx' .",
"lint:prettier": "prettier --check .",
"prepare": "npm-run-all build",
"test": "jest --coverage",
"test:codecov": "codecov",
"test:watch": "jest --watch"
}
}