-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
88 lines (88 loc) · 2.01 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
{
"name": "react-material-iconic-font",
"version": "2.0.0",
"description": "Material Iconic Font in React components",
"main": "./dist/cjs.js",
"browser": "./dist/umd.js",
"module": "./src/index.js",
"sideEffects": false,
"scripts": {
"lint": "eslint .",
"build": "webpack -p",
"prepare": "npm test && npm run build",
"test": "jest"
},
"files": [
"src",
"dist"
],
"keywords": [
"material",
"design",
"icons",
"iconic",
"font",
"react",
"components"
],
"author": "Guilherme Nagatomo <[email protected]>",
"license": "MIT",
"peerDependencies": {
"material-design-iconic-font": "^2.2.0",
"react": ">= 15",
"react-dom": ">= 15"
},
"devDependencies": {
"@babel/core": "^7.7.2",
"@babel/preset-env": "^7.7.1",
"@babel/preset-react": "^7.7.0",
"babel-loader": "^8.0.6",
"bundle-stats": "^1.12.1",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.15.1",
"eslint": "^7.1.0",
"eslint-plugin-jest": "^25.3.4",
"eslint-plugin-react": "^7.16.0",
"husky": "^4.0.1",
"jest": "^25.1.0",
"lint-staged": "^12.1.7",
"prettier": "^2.0.4",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-node-externals": "^2.5.2"
},
"prettier": {
"useTabs": true,
"singleQuote": true
},
"dependencies": {
"classnames": "^2.2.3",
"prop-types": "^15.6.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/guilhermehn/react-material-iconic-font.git"
},
"bugs": {
"url": "https://github.com/guilhermehn/react-material-iconic-font/issues"
},
"homepage": "https://github.com/guilhermehn/react-material-iconic-font#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write",
"git add"
]
},
"jest": {
"collectCoverage": true,
"coverageDirectory": "./coverage"
}
}