forked from assisrafael/react-bootstrap-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.01 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.01 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
{
"name": "react-bootstrap-utils",
"version": "0.23.2",
"description": "React bootstrap library",
"main": "dist/main.js",
"scripts": {
"build": "rollup --config",
"start": "webpack-dev-server --mode development",
"docs": "webpack --mode development",
"release": "standard-version",
"prepublishOnly": "npm run build",
"eslint": "eslint {src,demo}\"/**/*.\"{js,jsx}",
"prettier": "prettier {src,demo}\"/**/*.\"{js,jsx}",
"ci": "npm run prettier -- --list-different && npm run eslint",
"lint": "npm run eslint -- --fix",
"format": "npm run prettier -- --write",
"test": "NODE_OPTIONS=--experimental-vm-modules jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/assisrafael/react-bootstrap-utils.git"
},
"keywords": [],
"author": "Igor Rafael <igor.rafael@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/assisrafael/react-bootstrap-utils/issues"
},
"homepage": "https://github.com/assisrafael/react-bootstrap-utils#readme",
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@rollup/plugin-node-resolve": "^9.0.0",
"babel-jest": "^26.5.2",
"babel-loader": "^8.1.0",
"eslint": "^7.10.0",
"eslint-import-resolver-webpack": "^0.13.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-react": "^7.21.3",
"eslint-plugin-react-hooks": "^4.1.2",
"jest": "^26.5.2",
"js-var-type": "^0.2.4",
"lodash-es": "^4.17.15",
"prettier": "^2.1.2",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-hot-loader": "^4.13.0",
"rollup": "^2.28.2",
"rollup-plugin-babel": "^4.4.0",
"standard-version": "^9.0.0",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"peerDependencies": {
"js-var-type": "^0.2.4",
"lodash-es": "^4.17.15",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1"
}
}