forked from react-bootstrap/react-overlays
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 3.17 KB
/
package.json
File metadata and controls
118 lines (118 loc) · 3.17 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
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
{
"name": "gbst-react-overlays",
"author": "Jason Quense <monastic.panic@gmail.com>",
"version": "1.2.2",
"description": "A fork of react-overlays for GBST needs",
"homepage": "https://github.com/landbased/react-overlays",
"repository": {
"type": "git",
"url": "https://github.com/landbased/react-overlays"
},
"license": "MIT",
"main": "lib/index.js",
"module": "lib/es/index.js",
"files": [
"lib"
],
"keywords": [
"react-overlays",
"react-component",
"react",
"overlay",
"react-component",
"tooltip",
"bootstrap",
"popover",
"modal"
],
"scripts": {
"build:esm": "babel src -d lib/es --env-name esm",
"build:cjs": "babel src -d lib --delete-dir-on-start",
"build": "yarn build:cjs && yarn build:esm",
"deploy-docs": "yarn --cwd www build --prefix-paths && gh-pages -d www/public",
"precommit": "lint-staged",
"prepublishOnly": "yarn build",
"start": "yarn --cwd www start",
"lint": "eslint \"www/*.js\" www/src src test \"*.js\"",
"release": "rollout",
"tdd": "karma start",
"test": "yarn lint && yarn testonly",
"testonly": "yarn tdd --single-run"
},
"lint-staged": {
"*.js": [
"prettier --write",
"npm run lint -- --fix",
"git add"
]
},
"prettier": {
"singleQuote": true,
"trailingComma": "all"
},
"release": {
"publishDir": "lib",
"conventionalCommits": true
},
"dependencies": {
"classnames": "^2.2.6",
"dom-helpers": "^3.4.0",
"prop-types": "^15.6.2",
"prop-types-extra": "^1.1.0",
"react-context-toolbox": "^2.0.2",
"react-popper": "^1.3.2",
"uncontrollable": "^7.0.2",
"warning": "^4.0.2"
},
"peerDependencies": {
"react": ">=16.3.0",
"react-dom": ">=16.3.0"
},
"devDependencies": {
"@4c/rollout": "^1.2.0",
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"@wojtekmaj/enzyme-adapter-react-17": "^0.8.0",
"babel-eslint": "^10.0.1",
"babel-plugin-add-module-exports": "^1.0.0",
"babel-plugin-istanbul": "^5.1.0",
"chai": "^4.2.0",
"codecov": "^3.2.0",
"enzyme": "^3.8.0",
"eslint": "^5.13.0",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-mocha": "^5.3.0",
"eslint-plugin-react": "^7.12.4",
"gh-pages": "^2.0.1",
"husky": "^1.3.1",
"jquery": "^3.3.1",
"karma": "^4.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.2",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-sinon-chai": "^2.0.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^4.0.0",
"lint-staged": "^8.1.4",
"lodash": "^4.17.11",
"mocha": "^5.2.0",
"prettier": "^1.16.4",
"react": "^17.0.2",
"react-bootstrap": "^0.32.4",
"react-dom": "^17.0.2",
"react-live": "^1.12.0",
"react-transition-group": "^2.5.3",
"rimraf": "^2.6.3",
"simulant": "^0.2.2",
"sinon": "^6.2.0",
"sinon-chai": "^3.3.0",
"webpack": "^4.29.3",
"webpack-atoms": "^7.0.1",
"webpack-cli": "^3.2.3"
}
}