-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
35 lines (35 loc) · 863 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
34
35
{
"name": "password-score",
"version": "1.0.0",
"description": "JavaScript library used to give realistic estimates of the strength of a password.",
"main": "dist/js/password-score.js",
"directories": {
"doc": "docs",
"test": "tests"
},
"repository": {
"type": "git",
"url": "https://github.com/davidstutz/password-score"
},
"keywords": [
"js",
"password"
],
"author": "David Stutz",
"license": "BSD 3-Clause",
"bugs": {
"url": "https://github.com/davidstutz/password-score/issues"
},
"homepage": "http://davidstutz.de/password-score",
"scripts": {
"test": "karma start tests/karma.conf.js --single-run"
},
"devDependencies": {
"jasmine-core": "*",
"karma": "*",
"karma-cli": "*",
"karma-jasmine": "*",
"karma-phantomjs-launcher": "*",
"karma-chrome-launcher": "*"
}
}