-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
96 lines (96 loc) · 2.53 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
{
"name": "react-text-mask-hoc",
"version": "0.11.0",
"description": "A higher-order text-mask component for React and React Native.",
"author": "Vlad Zhukov (http://github.com/Vlad-Zhukov)",
"license": "MIT",
"repository": "Vlad-Zhukov/react-text-mask-hoc",
"bugs": {
"url": "https://github.com/Vlad-Zhukov/react-text-mask-hoc/issues"
},
"main": "./dist/react-text-mask-hoc.cjs.js",
"module": "./dist/react-text-mask-hoc.esm.js",
"scripts": {
"build": "rimraf dist/ && cross-env NODE_ENV=production node ./rollup.js",
"test": "jest",
"lint": "eslint \"**/*.js\"",
"prettier": "prettier \"**/*.{js,md}\" --write --loglevel warn",
"prepublishOnly": "yarn lint && yarn build && yarn test"
},
"dependencies": {
"react-shallow-equal": "^0.1.1"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-modules-commonjs": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"cross-env": "^5.2.0",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.6.0",
"eslint": "^5.6.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^21.24.1",
"eslint-plugin-jsx-a11y": "6.1.2",
"eslint-plugin-react": "^7.11.1",
"jest": "^23.6.0",
"jest-circus": "^23.6.0",
"prettier": "^1.14.3",
"raf": "^3.4.0",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"rimraf": "^2.6.2",
"rollup": "^0.66.4",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-commonjs": "^9.1.8",
"rollup-plugin-node-resolve": "^3.4.0",
"text-mask-addons": "^3.8.0",
"text-mask-core": "^5.1.2"
},
"peerDependencies": {
"react": ">=15"
},
"keywords": [
"react",
"react-native",
"text-mask",
"react-text-mask",
"react-component",
"react hoc",
"hoc",
"text mask",
"input mask",
"string mask",
"input formatting",
"text formatting",
"string formatting"
],
"files": [
"src",
"dist",
"ReactNative.js"
],
"jest": {
"testRunner": "jest-circus/runner",
"roots": [
"<rootDir>/__tests__/"
],
"transform": {
".js$": "babel-jest"
}
},
"prettier": {
"printWidth": 120,
"tabWidth": 4,
"trailingComma": "es5",
"singleQuote": true,
"bracketSpacing": false,
"jsxBracketSameLine": false,
"proseWrap": "always"
}
}