-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
52 lines (52 loc) · 1.53 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
{
"name": "react-bootstrap-icons",
"version": "1.11.4",
"description": "React component for Bootstrap Icons",
"main": "build/index.js",
"module": "dist/index.js",
"repository": "https://github.com/ismamz/react-bootstrap-icons",
"author": "Ismael Martínez",
"license": "MIT",
"sideEffects": false,
"typings": "dist/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"compile": "rm -rf src/icons && node bin/build.js",
"build:bundle": "rm -rf build && rollup --config rollup.config.js",
"build:es": "rm -rf dist && babel src --out-dir dist --copy-files",
"build": "concurrently \"npm:build:*\"",
"prepare": "npm run build"
},
"keywords": [
"react",
"icons",
"svg",
"bootstrap"
],
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"bootstrap-icons": "^1.11.3",
"concurrently": "^7.1.0",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.2",
"prettier-eslint": "^9.0.0",
"rollup": "^1.16.4",
"rollup-plugin-babel": "^4.3.3",
"uppercamelcase": "^3.0.0"
},
"peerDependencies": {
"react": ">=16.8.6"
},
"dependencies": {
"prop-types": "^15.7.2"
}
}