-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.76 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
{
"name": "@aboutbits/react-material-icons",
"version": "0.1.6",
"description": "Material design icon components for React",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"generate": "rm -rf src/* && node generator.js",
"lint": "eslint --ext js,ts,tsx src ./generator.js",
"lint:fix": "npm run lint -- --fix",
"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": "^26.0.14",
"@types/react": "^16.9.50",
"@typescript-eslint/parser": "^4.3.0",
"@typescript-eslint/eslint-plugin": "^4.3.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"axios": "^0.20.0",
"jest": "^26.4.2",
"eslint": "^7.10.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.0.2",
"eslint-plugin-prettier": "^3.1.4",
"prettier": "^2.1.2",
"ts-jest": "^26.4.1",
"typescript": "^4.0.3",
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"peerDependencies": {
"react": "^16.13.1",
"react-dom": "^16.13.1"
}
}