-
Notifications
You must be signed in to change notification settings - Fork 197
/
package.json
47 lines (47 loc) · 1.09 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
{
"name": "react-maskedinput",
"version": "4.0.2",
"description": "Masked <input/> React component",
"main": "lib/index.js",
"module": "es/index.js",
"files": [
"es",
"lib",
"umd"
],
"scripts": {
"build": "nwb build-react-component",
"clean": "nwb clean-module && nwb clean-demo",
"lint": "eslint src tests",
"start": "nwb serve-react-demo",
"test": "nwb test-react",
"posttest": "npm run lint",
"test:watch": "nwb test-react --server"
},
"dependencies": {
"inputmask-core": "^2.1.1",
"prop-types": "^15.5.7"
},
"peerDependencies": {
"react": "^0.14.9 || ^15.3.0 || ^16.0.0"
},
"devDependencies": {
"eslint-config-jonnybuchanan": "5.0.x",
"nwb": "0.21.x",
"react": "16.x",
"react-dom": "16.x"
},
"author": "Jonny Buchanan <jonathan.buchanan@gmail.com>",
"homepage": "https://github.com/insin/react-maskedinput",
"license": "MIT",
"repository": {
"type": "git",
"url": "http://github.com/insin/react-maskedinput.git"
},
"keywords": [
"react",
"masked",
"input",
"react-component"
]
}