-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
52 lines (52 loc) · 1.42 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
{
"name": "react-pin-input",
"version": "1.3.1",
"description": "React component for PIN like input",
"main": "dist/bundle.js",
"scripts": {
"test": "jest",
"dev": "NODE_ENV=dev webpack-dev-server",
"build": "rimraf dist && eslint src && NODE_ENV=prod webpack"
},
"author": "Arun Ghosh",
"repository": {
"type": "git",
"url": "https://github.com/arunghosh/react-pin-input"
},
"keywords": [
"pin",
"input",
"react",
"component"
],
"license": "MIT",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-jest": "^23.6.0",
"babel-loader": "^7.1.5",
"babel-preset-es2015": "^6.24.0",
"babel-preset-react": "^6.23.0",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.7.0",
"eslint": "^3.17.1",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.0",
"jest": "^23.6.0",
"react": "^16.2.0",
"react-addons-test-utils": "^15.4.2",
"react-dom": "^16.2.0",
"react-test-renderer": "^16.2.0",
"rimraf": "^2.6.1",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.10.3"
},
"peerDependencies": {
"prop-types": "^15.6.0",
"react": "^0.14.0 || ^15.4.2 || ^16.2.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^0.14.0 || ^15.4.2 || ^16.2.0 || ^17.0.0 || ^18.0.0"
},
"types": "./typings/react-pin-input.d.ts"
}