forked from jquense/react-bootstrap-modal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.18 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
{
"name": "react-bootstrap-modal",
"version": "4.2.0",
"description": "",
"author": {
"name": "Jason Quense",
"email": "[email protected]"
},
"main": "lib/Modal.js",
"repository": "jquense/react-bootstrap-modal",
"license": "MIT",
"keywords": [
"react-boostrap-modal",
"react-component",
"modal",
"portal",
"dialog",
"bootstrap"
],
"files": [
"lib"
],
"scripts": {
"test": "jest ",
"tdd": "jest --watch",
"clean": "rimraf lib/*",
"less": "lessc src/less/rbm-complete.less lib/css/rbm-complete.css && lessc src/less/rbm-patch.less lib/css/rbm-patch.css",
"build": "npm run clean && npm run less && babel src --out-dir lib --copy-files",
"build:docs": "webpack --config ./webpack.config.js",
"prepublishOnly": "npm run build",
"docs": "webpack-dev-server --config ./webpack.config.js"
},
"jest": {
"roots": [
"./test"
]
},
"peerDependencies": {
"react": "^0.14.9 || >= 15.3.0",
"react-dom": "^0.14.9 || >= 15.3.0"
},
"release": {
"extends": "@4c/semantic-release-config"
},
"devDependencies": {
"@4c/semantic-release-config": "^1.0.2",
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-jest": "^23.0.1",
"babel-preset-jason": "^3.1.1",
"bootstrap": "^3.3.7",
"chai": "^4.1.2",
"cpy-cli": "^1.0.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.19.1",
"eslint-config-jason": "^4.0.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-react": "^7.9.1",
"jest": "^23.1.0",
"less": "^2.0.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-live": "^1.7.1",
"react-test-renderer": "^16.4.1",
"rimraf": "^2.6.2",
"semantic-release": "^15.5.5",
"simulant": "^0.2.0",
"sinon": "^6.0.0",
"sinon-chai": "^3.2.0",
"travis-deploy-once": "^5.0.0",
"webpack": "^3.7.1",
"webpack-atoms": "^4.1.2",
"webpack-dev-server": "^2.9.1"
},
"dependencies": {
"classnames": "^2.2.6",
"dom-helpers": "^3.3.1",
"prop-types": "^15.6.1",
"prop-types-extra": "^1.1.0",
"react-overlays": "^0.8.0",
"react-transition-group": "^2.0.0"
}
}