forked from nowsecure/owasp-password-strength-test
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 850 Bytes
/
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
{
"name": "owasp-password-strength-test",
"version": "2.0.0",
"description": "A password-strength tester based upon the OWASP guidelines for enforcing strong passwords.",
"main": "owasp-password-strength-test.js",
"devDependencies": {
"jshint": "2.6.3",
"mocha": "2.2.4",
"should": "3.1.2"
},
"jshintConfig": {
"expr": true,
"laxbreak": true
},
"scripts": {
"test": "mocha --recursive --reporter spec test.js",
"lint": "jshint *.js",
"preversion": "npm test && npm run lint",
"version": "git add -A .",
"postversion": "git push --all; git push --tags"
},
"repository": {
"type": "git",
"url": "https://github.com/nowsecure/owasp-password-strength-test.git"
},
"keywords": [
"security",
"password",
"owasp"
],
"author": "Chris Allen Lane",
"license": "MIT"
}