-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
71 lines (71 loc) · 1.98 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
{
"name": "react-rxinput",
"version": "1.1.0",
"description": "react-rxinput React extends input element to validate against a regular expression as you type input (incremental regex matcher)",
"main": "lib/index.js",
"jsnext:main": "es/index.js",
"files": [
"css",
"es",
"lib",
"umd"
],
"scripts": {
"buildex": "nwb build-react-component && shx cp demo/dist/demo.*.js ../nurulc.github.io/demo.js && shx cp demo/dist/demo.*.css ../nurulc.github.io/demo.css && shx cp demo/dist/runtime.*.js ../nurulc.github.io/runtime.js",
"build": "nwb build-react-component",
"clean": "nwb clean-module && nwb clean-demo",
"prepublishOnly": "npm run build",
"start": "nwb serve-react-demo",
"test": "nwb test-react",
"test:coverage": "nwb test-react --coverage",
"test:watch": "nwb test-react --server",
"webpack": "webpack"
},
"dependencies": {},
"peerDependencies": {
"incr-regex-package": ">=1",
"react": ">=15",
"react-dom": ">=15",
"react-bootstrap": ">=1"
},
"devDependencies": {
"@babel/cli": ">=7.7",
"@babel/core": ">=7.7",
"@babel/plugin-transform-react-jsx": ">=7.7",
"@babel/preset-env": ">=7.7",
"@babel/preset-react": ">=7.7",
"@babel/register": ">=7.7",
"babel-loader": ">=8",
"clean-webpack-plugin": ">=3",
"except": "^0.1.3",
"incr-regex-package": ">=1",
"react": ">=15",
"react-bootstrap": ">=1.0.0-beta.16",
"react-dom": "^16.12.0",
"shelljs": "^0.8.3",
"shx": "^0.3.2",
"terser-webpack-plugin": "^2.3.0",
"webpack": ">=4",
"webpack-cli": ">=3"
},
"author": "Nurul Choudhury",
"license": "ISC",
"homepage": "https://nurulc.github.io",
"repository": {
"type": "git",
"url": "https://github.com/nurulc/react-rxinput.git"
},
"keywords": [
"react-component",
"react",
"autocomplete",
"partial",
"suggestion",
"regular-expression",
"dynamic",
"incremental",
"validation",
"input",
"RegExp"
]
}