forked from benmj/password-strength
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
29 lines (29 loc) · 1.11 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
{
"name": "bd-password-strength",
"version": "1.0.2",
"description": "A utility for assigning a numeric score to a password entered by a user to judge its strength.",
"repository": "https://github.com/buildium/password-strength",
"main": "password-strength.js",
"scripts": {
"test": "karma start --single-run",
"build": "browserify . --standalone BdPasswordStrength --outfile ./dist/password-strength.js && browserify . --transform [ uglifyify] --standalone BdPasswordStrength --outfile ./dist/password-strength.min.js",
"lint": "node ./node_modules/eslint/bin/eslint.js ./password-strength.js"
},
"author": "Ben Jacobs <[email protected]>",
"license": "MIT",
"devDependencies": {
"babel-polyfill": "^6.2.0",
"babel-preset-es2015": "^6.1.18",
"babelify": "^7.2.0",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^2.0.0",
"jasmine-core": "^2.3.4",
"karma": "^0.13.15",
"karma-browserify": "^4.4.1",
"karma-jasmine": "^0.3.6",
"karma-phantomjs-launcher": "^0.2.1",
"phantomjs": "^1.9.19",
"phantomjs-polyfill": "0.0.1",
"uglifyify": "^3.0.1"
}
}