forked from react-bootstrap/react-bootstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
127 lines (127 loc) · 3.78 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "react-bootstrap",
"version": "0.32.1",
"description": "Bootstrap 3 components built with React",
"repository": {
"type": "git",
"url": "react-bootstrap/react-bootstrap"
},
"homepage": "https://react-bootstrap.github.io/",
"main": "lib/index.js",
"jsnext:main": "es/index.js",
"module": "es/index.js",
"scripts": {
"bootstrap-docs": "npm run build lib && cd www && yarn install && cd ..",
"build": "node tools/build.js",
"build-docs": "npm run bootstrap-docs && npm -C www run build",
"ci-lint": "eslint --rule 'prettier/prettier: 2'",
"format": "npm run ci-lint -- --fix",
"lint": "npm run ci-lint .",
"precommit": "lint-staged",
"release": "npm run build-docs && release",
"tdd": "karma start",
"test": "npm run lint && npm run test-browser && npm run test-node",
"test-browser": "cross-env NODE_ENV=test karma start --single-run",
"test-node": "mocha --compilers js:tools/babel-register.js test/server/*Spec.js"
},
"lint-staged": {
"*.js": [
"format",
"git add"
]
},
"prettier": {
"singleQuote": true
},
"files": [
"CHANGELOG.md",
"lib",
"dist",
"es"
],
"keywords": [
"react",
"ecosystem-react",
"react-component",
"bootstrap"
],
"author": "Stephen J. Collings <stevoland@gmail.com>",
"license": "MIT",
"peerDependencies": {
"react": "^0.14.9 || >=15.3.0",
"react-dom": "^0.14.9 || >=15.3.0"
},
"devDependencies": {
"babel-core": "^6.13.2",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-dev-expression": "^0.2.1",
"babel-plugin-istanbul": "^4.1.5",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.12.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.11.1",
"babel-register": "^6.26.0",
"chai": "^3.5.0",
"codecov": "^2.2.0",
"colors": "^1.1.2",
"create-react-class": "^15.5.3",
"cross-env": "^2.0.0",
"enzyme": "^3.1.0",
"enzyme-adapter-react-15": "^1.0.1",
"eslint": "^4.8.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-mocha": "^4.11.0",
"eslint-plugin-prettier": "^2.4.0",
"eslint-plugin-react": "^7.5.1",
"fs-extra": "^4.0.2",
"husky": "^0.14.3",
"karma": "^1.1.1",
"karma-chrome-launcher": "^1.0.1",
"karma-cli": "^1.0.1",
"karma-coverage": "^1.1.0",
"karma-firefox-launcher": "^1.0.0",
"karma-mocha": "^1.1.1",
"karma-mocha-reporter": "^2.0.4",
"karma-sinon-chai": "^1.2.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.4",
"lint-staged": "^6.0.0",
"lodash": "^4.13.1",
"mocha": "^2.5.3",
"prettier": "^1.9.2",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-test-renderer": "^15.6.2",
"release-script": "^1.0.2",
"sinon": "^2.3.2",
"sinon-chai": "^2.8.0",
"webpack": "^3.6.0",
"webpack-atoms": "^4.1.2"
},
"dependencies": {
"babel-runtime": "^6.11.6",
"classnames": "^2.2.5",
"dom-helpers": "^3.2.0",
"invariant": "^2.2.1",
"keycode": "^2.1.2",
"prop-types": "^15.5.10",
"prop-types-extra": "^1.0.1",
"react-overlays": "^0.8.0",
"react-prop-types": "^0.4.0",
"react-transition-group": "^2.0.0",
"uncontrollable": "^4.1.0",
"warning": "^3.0.0"
},
"release-script": {
"bowerRepo": "git@github.com:react-bootstrap/react-bootstrap-bower.git",
"docsRepo": "git@github.com:react-bootstrap/react-bootstrap.github.io.git",
"docsRoot": "www/public/"
}
}