-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.03 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.03 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
{
"name": "react-bootstrap-v4",
"version": "0.0.2",
"description": "Bootstrap 4 components built with React",
"repository": {
"type": "git",
"url": "chrislondon/react-bootstrap"
},
"homepage": "https://github.com/chrislondon/react-bootstrap",
"scripts": {
"build": "babel --presets es2015,stage-0 -d lib/ src/",
"prepublish": "npm run build"
},
"main": "lib/index.js",
"directories": {
"lib": "lib/"
},
"files": [
"CHANGELOG.md",
"lib",
"dist"
],
"keywords": [
"react",
"react-component",
"bootstrap-v4"
],
"author": "Chris London <me@chrislondon.co>",
"license": "Apache-2.0",
"peerDependencies": {
"react": ">=0.14.0",
"react-dom": ">=0.14.0"
},
"devDependencies": {
"babel": "^5.8.38",
"babel-cli": "^6.6.5",
"babel-plugin-transform-react-jsx": "^6.7.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0",
"react": "^0.14.6",
"react-dom": "^0.14.6"
},
"dependencies": {
"babel-runtime": "^5.8.38"
}
}