This repository has been archived by the owner on Jul 9, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
82 lines (82 loc) · 2.36 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
{
"name": "react-bootstrap-maskedinput",
"version": "0.5.0",
"description": "react-maskedinput form element that works with react-bootstrap",
"main": "lib/index.js",
"scripts": {
"test": "jest",
"format": "prettier --write '**/*.js'",
"lint": "eslint src/*.js 'test/**/*.js'",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"build": "babel src --out-dir lib",
"example": "webpack-dev-server --config example/webpack.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/schneidmaster/react-bootstrap-maskedinput.git"
},
"keywords": [
"react",
"bootstrap",
"masked",
"input"
],
"author": "Zach Schneider <zach@schneid.io>",
"license": "MIT",
"bugs": {
"url": "https://github.com/schneidmaster/react-bootstrap-maskedinput/issues"
},
"homepage": "https://github.com/schneidmaster/react-bootstrap-maskedinput#readme",
"files": [
"lib/",
"src/",
"LICENSE.txt",
"package.json",
"README.md"
],
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"**/src/**/*.js"
],
"setupTestFrameworkScriptFile": "<rootDir>/test/setup"
},
"devDependencies": {
"@babel/cli": "^7.10.4",
"@babel/core": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"@testing-library/react": "^10.4.5",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.1.0",
"babel-loader": "^8.1.0",
"coveralls": "^2.13.1",
"eslint": "^7.4.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-config-standard-react": "^9.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-standard": "^4.0.1",
"html-webpack-include-assets-plugin": "^0.0.6",
"html-webpack-plugin": "^2.29.0",
"jest": "^26.1.0",
"prettier": "^2.0.5",
"react": "^16.13.1",
"react-bootstrap": ">= 1.0.0",
"react-dom": "^16.13.1",
"react-test-renderer": "^16.13.1",
"webpack": "^3.2.0",
"webpack-dev-server": "^2.5.1"
},
"peerDependencies": {
"react": ">= 16.0.0",
"react-bootstrap": ">= 1.0.0"
},
"dependencies": {
"react-maskedinput": "^4.0.1"
}
}