forked from elboletaire/password-strength-meter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.6 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
61
62
63
64
65
66
67
68
69
70
{
"name": "password-strength-meter",
"version": "2.1.0",
"description": "A password strength meter plugin for jQuery",
"main": "dist/password.min.js",
"scripts": {
"test": "eslint src && jest",
"postversion": "git push && git push --tags && npm publish"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/elboletaire/password-strength-meter.git"
},
"keywords": [
"jquery-plugin",
"ecosystem:jquery",
"jquery",
"plugin",
"password",
"strength",
"meter",
"form",
"forms"
],
"author": "Òscar Casajuana <[email protected]> (https://github.com/elboletaire)",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/elboletaire/password-strength-meter/issues"
},
"homepage": "https://github.com/elboletaire/password-strength-meter#readme",
"devDependencies": {
"brfs": "^2.0.2",
"eslint": "^7.0.0",
"gulp": "^4.0.2",
"gulp-chmod": "^3.0.0",
"gulp-clean": "^0.4.0",
"gulp-clean-css": "^4.2.0",
"gulp-rename": "^2.0.0",
"gulp-replace": "^1.0.0",
"gulp-uglify": "^3.0.2",
"jest": "^26.0.1",
"jquery": "^3.1.1"
},
"peerDependencies": {
"jquery": ">=1.14.0"
},
"files": [
"dist",
"LICENSE.md",
"src/example.png"
],
"jest": {
"testMatch": [
"<rootDir>/test/**/?*.(spec|test).{js,jsx,mjs}"
],
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx|mjs)$"
],
"testEnvironment": "jsdom",
"moduleFileExtensions": [
"web.js",
"mjs",
"js",
"json",
"web.jsx",
"jsx",
"node"
]
}
}