-
Notifications
You must be signed in to change notification settings - Fork 255
/
package.json
102 lines (102 loc) · 3.19 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
97
98
99
100
101
102
{
"name": "react-input-mask",
"description": "Masked input component for React",
"version": "3.0.0-alpha.2",
"homepage": "https://github.com/sanniassin/react-input-mask",
"license": "MIT",
"author": "Nikita Lobachev <[email protected]>",
"keywords": [
"react",
"input",
"mask",
"masked",
"react-component"
],
"peerDependencies": {
"react": ">=16.8",
"react-dom": ">=16.8"
},
"devDependencies": {
"@babel/cli": "^7.8.3",
"@babel/core": "^7.8.3",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-modules-commonjs": "^7.8.3",
"@babel/plugin-transform-proto-to-assign": "^7.8.3",
"@babel/polyfill": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@babel/preset-react": "^7.8.3",
"@babel/register": "^7.8.3",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"babel-plugin-dev-expression": "^0.2.2",
"babel-plugin-minify-dead-code-elimination": "^0.5.1",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"chai": "^4.2.0",
"console-polyfill": "^0.3.0",
"cross-env": "^5.2.1",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.18.0",
"eslint-plugin-react-hooks": "^1.7.0",
"html-webpack-plugin": "^3.2.0",
"husky": "^3.1.0",
"karma": "^4.4.1",
"karma-chrome-launcher": "^3.1.0",
"karma-mocha": "^1.3.0",
"karma-webpack": "^4.0.2",
"lint-staged": "^9.5.0",
"mocha": "^6.2.2",
"prettier": "^1.19.1",
"puppeteer": "^1.20.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"rollup": "^1.29.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-size-snapshot": "^0.10.0",
"rollup-plugin-terser": "^5.2.0",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.1"
},
"main": "index.js",
"files": [
"lib",
"dist"
],
"lint-staged": {
"*.js": "eslint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"scripts": {
"clean": "rimraf lib dist",
"build": "cross-env BABEL_ENV=rollup rollup -c",
"start": "cross-env BABEL_ENV=test NODE_ENV=development webpack-dev-server",
"prepare": "npm run lint && npm test && npm run clean && npm run build",
"lint": "eslint ./src ./tests ./*.js",
"lint-fix": "eslint --fix ./src ./tests ./*.js",
"test": "npm run build && npm run test:input && npm run test:server-render && npm run test:build",
"test:input": "cross-env NODE_ENV=test BABEL_ENV=test karma start",
"test:server-render": "cross-env BABEL_ENV=test mocha --require @babel/register ./tests/server-render",
"test:build": "cross-env BABEL_ENV=test mocha --require @babel/register ./tests/build"
},
"repository": {
"type": "git",
"url": "https://github.com/sanniassin/react-input-mask.git"
},
"dependencies": {
"invariant": "^2.2.4",
"prop-types": "^15.7.2",
"warning": "^4.0.3"
}
}