This repository has been archived by the owner on Apr 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpackage.json
62 lines (62 loc) · 2.02 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
{
"name": "react-password-strength",
"version": "2.4.0",
"engines": {
"node": ">6.11.1"
},
"description": "A password strength indicator field for use in React projects",
"main": "dist/index.js",
"scripts": {
"build-module": "./node_modules/.bin/webpack --config=webpack.build.config.js",
"build-prod": "npm run build-module -p & npm run build-universal-module -p",
"build-universal-module": "./node_modules/.bin/webpack --config=webpack.universal.config.js",
"build-watch": "./node_modules/.bin/webpack --config=webpack.build.config.js --watch",
"example-build": "./node_modules/.bin/webpack --config=webpack.config.js",
"example-publish": "git subtree push --prefix example origin gh-pages",
"example": "./node_modules/.bin/webpack-dev-server --content-base example/",
"start": "npm run example & npm run build-watch",
"test": "./node_modules/karma/bin/karma start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mmw/react-password-strength.git"
},
"keywords": [
"react"
],
"author": "Mateusz Wijas",
"license": "MIT",
"bugs": {
"url": "https://github.com/mmw/react-password-strength/issues"
},
"homepage": "https://github.com/mmw/react-password-strength#readme",
"devDependencies": {
"babel-core": "^6.11.4",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-2": "^6.24.1",
"css-loader": "^0.23.1",
"es6-shim": "^0.35.3",
"extract-text-webpack-plugin": "^3.0.2",
"jasmine": "^2.8.0",
"karma": "^1.7.1",
"karma-jasmine": "^1.1.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-spec-reporter": "0.0.31",
"karma-webpack": "^2.0.6",
"react": "^16.1.1",
"react-dom": "^16.1.1",
"style-loader": "^0.13.1",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.4"
},
"peerDependencies": {
"react": "^16.0.0",
"react-dom": "^16.0.0"
},
"dependencies": {
"prop-types": "^15.6.0",
"zxcvbn": "^4.3.0"
}
}