-
-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathpackage.json
65 lines (65 loc) · 1.88 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
{
"name": "component-template",
"description": "A React component template for building and publishing reactstrap components",
"version": "1.0.0",
"homepage": "https://reactstrap.github.io/component-template",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/reactstrap/component-template.git"
},
"main": "lib/index.js",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"lint": "eslint src",
"prebuild": "babel src/components --out-dir lib --ignore test.js",
"create-release-branch": "sh ./scripts/create-release-branch",
"publish-release": "sh ./scripts/publish-release",
"deploy-docs": "sh ./scripts/docs",
"ci-deploy-docs": "sh ./scripts/docs-ci",
"gh-pages": "REACT_APP_GH_PAGES_PATH='component-template' npm run build"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"bootstrap": "^4.0.0-alpha.6",
"conventional-changelog-cli": "^1.1.1",
"conventional-recommended-bump": "^0.3.0",
"dentist": "^1.0.3",
"enzyme": "^2.4.1",
"eslint": "^3.8.1",
"history": "^4.2.0",
"react": "^15.3.2",
"react-addons-test-utils": "^15.3.2",
"react-addons-transition-group": "^15.3.2",
"react-addons-css-transition-group": "^15.3.2",
"react-dom": "^15.3.2",
"react-prism": "^4.0.0",
"react-router": "^4.0.0-alpha.6",
"react-scripts": "0.8.5",
"reactstrap": "^4.0.1"
},
"dependencies": {},
"peerDependencies": {
"reactstrap": "^4.0.0"
},
"license": "MIT",
"files": [
"LICENSE",
"README.md",
"CHANGELOG.md",
"lib"
],
"keywords": [
"component-template",
"react",
"component",
"components",
"react-component",
"reactstrap-component",
"bootstrap"
]
}