-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.94 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.94 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
70
71
72
{
"name": "react-directive",
"version": "2.0.0",
"description": "A conditional, className and listing directive for react apps",
"repository": {
"type": "git",
"url": "https://github.com/mkhstar/react-directive"
},
"main": "dist/index.js",
"scripts": {
"build": "rm -rf ./dist && tsc",
"prepublishOnly": "npm run build",
"test-only": "jest",
"test": "jest --verbose --coverage",
"test-output": "jest --verbose --coverage --coverageDirectory='coverage'",
"test:watch": "jest --verbose --watch",
"lint-fix": "eslint --fix src/.",
"lint": "eslint src/."
},
"keywords": [
"react",
"className",
"classList",
"directive",
"dirIf",
"dirShow",
"dirFor",
"loop",
"condition",
"listing"
],
"author": "Kusi Musah Hussein",
"license": "MIT",
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.4.0",
"@types/node": "^18.15.11",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@types/react-test-renderer": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"eslint": "^8.32.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.1",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.4.1",
"jest-environment-jsdom": "^29.4.1",
"prettier": "^2.8.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-test-renderer": "^18.2.0",
"sass": "^1.32.0",
"ts-jest": "^29.0.5",
"typescript": "^5.0.3"
},
"peerDependencies": {
"react": ">=16.8.0"
},
"browserslist": [
">0.2%",
"not ie <= 11",
"not op_mini all"
],
"dependencies": {}
}