This repository was archived by the owner on Jun 23, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
89 lines (89 loc) · 2.66 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
{
"name": "react-nice-input-password",
"version": "2.7.0",
"description": "React input password with builtin strength meter and Material UI support",
"main": "dist/react-nice-input-password.js",
"style": "dist/react-nice-input-password.css",
"scripts": {
"start": "parcel public/index.html --open",
"test": "export NODE_ENV=test; jest --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"simple-test": "export NODE_ENV=test; jest --coverage",
"prepublish": "jest --coverage",
"build": "webpack"
},
"files": [
"dist/react-nice-input-password.js",
"dist/react-nice-input-password.css"
],
"repository": {
"type": "git",
"url": "git+https://github.com/renanborgez/react-nice-input-password.git"
},
"keywords": [
"react",
"react-component",
"input",
"password",
"component"
],
"author": {
"name": "Renan Borges",
"email": "[email protected]",
"url": "http://renan.ninja"
},
"jest": {
"verbose": true,
"testURL": "http://localhost/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/renanborgez/react-nice-input-password/issues"
},
"homepage": "https://github.com/renanborgez/react-nice-input-password#readme",
"peerDependencies": {
"react": "^0.14.7 || ^15.0.0-0 || ^16.0.0",
"react-dom": "^0.14.7 || ^15.0.0-0 || ^16.0.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.11.5",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-react-jsx": "^7.0.0",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.0.0",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"babel-eslint": "^9.0.0",
"babel-jest": "^26.3.0",
"babel-loader": "^8.1.0",
"babel-plugin-import-noop": "^1.0.1",
"babel-preset-airbnb": "^2.4.0",
"coveralls": "^3.0.0",
"css-loader": "^4.2.2",
"eslint": "^4.15.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jest": "^21.6.2",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.5.1",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^1.1.6",
"jest": "^26.4.2",
"jsx-loader": "^0.13.2",
"mini-css-extract-plugin": "^0.11.0",
"node-sass": "^4.7.2",
"parcel-bundler": "^1.4.1",
"postcss-loader": "^2.0.10",
"postcss-modules": "^1.1.0",
"react-dev-utils": "^4.2.1",
"sass-loader": "^10.0.1",
"style-loader": "^0.19.1",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
},
"dependencies": {
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-dom": "^16.2.0"
}
}