-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.85 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.85 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": "@aboutbits/react-material-icons",
"version": "1.0.2",
"description": "Material design icon components for React",
"main": "dist/",
"engines": {
"npm": "^8",
"node": "^16"
},
"scripts": {
"build": "tsc",
"clear": "rm -rf src/*",
"generate": "node generator.js",
"lint": "eslint --ext js,ts,tsx src ./generator.js",
"lint:fix": "npm run lint -- --fix",
"typecheck": "tsc --noEmit",
"test": "jest --config jestconfig.json --passWithNoTests",
"prepare": "npm run build",
"prepublishOnly": "npm run test && npm run lint",
"version": "npm run test && npm run lint && git add -A src",
"postversion": "git push && git push --tags"
},
"keywords": [
"material design",
"icons",
"react"
],
"private": false,
"author": "AboutBits",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/aboutbits/react-material-icons"
},
"files": [
"readme.md",
"dist/**/*"
],
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/aboutbits/react-material-icons/issues"
},
"homepage": "https://github.com/aboutbits/react-material-icons#readme",
"devDependencies": {
"@types/jest": "^28.1.3",
"@types/react": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@typescript-eslint/parser": "^5.30.0",
"axios": "^0.27.2",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.5.3",
"eslint-plugin-prettier": "^4.1.0",
"jest": "^28.1.1",
"jest-environment-jsdom": "^28.1.1",
"prettier": "^2.7.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"ts-jest": "^28.0.5",
"typescript": "^4.7.4"
},
"peerDependencies": {
"react": "^16.8.0 || 17.x",
"react-dom": "^16.8.0 || 17.x"
}
}