forked from corygibbons/react-file-icon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.21 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
{
"name": "react-file-icon",
"version": "1.1.0",
"description": "React component to render svg file icons",
"repository": {
"url": "https://github.com/corygibbons/react-file-icon"
},
"source": "src/index.js",
"main": "dist/react-file-icon.js",
"module": "dist/react-file-icon.esm.js",
"scripts": {
"build": "microbundle --jsx React.createElement --no-sourcemap --no-compress",
"watch": "microbundle --jsx React.createElement --no-compress --watch",
"test": "jest --config config/jest.config.js"
},
"keywords": [
"react",
"component",
"svg",
"icons",
"file types"
],
"license": "MIT",
"dependencies": {
"lodash.uniqueid": "^4.0.1",
"prop-types": "^15.7.2",
"tinycolor2": "^1.4.2"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.1",
"babel-jest": "^26.6.0",
"component-image": "^2.1.1",
"jest": "^26.6.0",
"jest-image-snapshot": "^4.2.0",
"microbundle": "^0.12.4",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-test-renderer": "^17.0.1"
},
"peerDependencies": {
"react": "^17.0.0 || ^16.2.0",
"react-dom": "^17.0.0 || ^16.2.0"
}
}