This repository has been archived by the owner on May 11, 2021. It is now read-only.
forked from mmw/react-password-strength
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.93 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
{
"name": "react-password-strength",
"version": "2.2.0",
"description": "A password strength indicator field for use in React projects",
"main": "dist/index.js",
"scripts": {
"build-watch": "./node_modules/.bin/webpack --config=webpack.build.config.js --watch",
"build-module": "./node_modules/.bin/webpack --config=webpack.build.config.js",
"build-universal-module": "./node_modules/.bin/webpack --config=webpack.universal.config.js",
"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/",
"prepublish": "npm run build-module -p & npm run build-universal-module -p",
"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",
"css-loader": "^0.23.1",
"extract-text-webpack-plugin": "^1.0.1",
"jasmine": "^2.5.2",
"karma": "^1.3.0",
"karma-jasmine": "^1.1.0",
"karma-phantomjs-launcher": "^1.0.2",
"karma-spec-reporter": "0.0.26",
"karma-webpack": "^1.8.0",
"react": "^15.5.0",
"react-addons-test-utils": "^15.4.1",
"react-dom": "^15.5.0",
"style-loader": "^0.13.1",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1"
},
"peerDependencies": {
"react-dom": "^15.5.0"
},
"dependencies": {
"prop-types": "^15.5.10",
"zxcvbn": "^4.3.0"
}
}