-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·60 lines (60 loc) · 1.64 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
{
"name": "joi-zxcvbn",
"version": "5.2.1",
"description": "Validate Password complexity with Joi and zxcvbn",
"main": "dist/index.js",
"scripts": {
"test": "tape test.js",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"build:dist": "babel -s true index.js -d dist",
"serve:dist": "nodemon dist/index.js",
"clean": "rimraf coverage/ dist/",
"setenv:dev": "npm config set production false",
"setenv:prod": "npm config set production true",
"preversion": "npm run lint && npm run test && npm run clean && npm run setenv:prod && npm run build:dist",
"postversion": "git push --follow-tags origin master && npm publish && npm run setenv:dev"
},
"keywords": [
"password",
"passphrase",
"password strength",
"passphrase strength",
"strength meter",
"zxcvbn",
"validate",
"validation",
"joi",
"extension"
],
"author": "Jochen Preusche (Iilei)",
"license": "MIT",
"peerDependencies": {
"joi": "^14.3.1"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"babel-eslint": "^11.0.0-beta.0",
"babel-preset-airbnb": "^4.0.1",
"eslint": "^6.1.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-import": "^2.18.2",
"joi": "^14.3.1",
"proxyquire": "^2.1.1",
"rimraf": "^2.6.3",
"sinon": "^7.3.2",
"tape": "^4.11.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iilei/joi-zxcvbn.git"
},
"bugs": {
"url": "https://github.com/iilei/joi-zxcvbn/issues"
},
"homepage": "https://github.com/iilei/joi-zxcvbn#readme",
"dependencies": {
"zxcvbn": "^4.4.2"
}
}