-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
46 lines (46 loc) · 1.22 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-bytesize-icons",
"version": "0.12.2",
"description": "Bytesize Icons as React Components.",
"main": "index.js",
"module": "esm/index.js",
"sideEffects": false,
"scripts": {
"build:lib": "babel src --out-dir ./",
"build:esm": "cross-env BABEL_ENV=esm-dir babel src --out-dir esm",
"build": "npm run build:lib && npm run build:esm",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kilian/react-bytesize-icons.git"
},
"keywords": [
"bytesize",
"icons",
"icons",
"ui",
"react",
"components"
],
"authors": [
"Mustafa Abdelhai <[email protected]> (https://devolio.net)",
"Kilian Valkhof <[email protected]> (https://kilianvalkhof.com)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Kilian/react-bytesize-icons/issues"
},
"homepage": "https://github.com/Kilian/react-bytesize-icons#readme",
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"cross-env": "^5.2.0"
},
"peerDependencies": {
"react": "^15.3.0|^16.14.0",
"react-dom": "^15.3.0|^16.14.0"
}
}