-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 1.22 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
{
"name": "checkforce.js",
"version": "3.0.0-alpha1",
"description": "A library that helps to perform tasks to test strength of passwords",
"main": "dist/checkforce.min.js",
"scripts": {
"test": "karma start --single-run",
"start": "webpack serve --open",
"watch": "webpack --watch --env BUNDLE=true",
"build": "webpack --env BUNDLE=true",
"build-standalone": "webpack --env BUNDLE=false",
"build-minify": "webpack --env BUNDLE=true --env MINIFY=true",
"build-minify-standalone": "webpack --env BUNDLE=false --env MINIFY=true"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dejaneves/checkforce.js.git"
},
"author": "Jaime Neves",
"license": "MIT",
"bugs": {
"url": "https://github.com/dejaneves/checkforce.js/issues"
},
"homepage": "https://github.com/dejaneves/checkforce.js#readme",
"peerDependencies": {
"@popperjs/core": "^2.11.2",
"zxcvbn": "^4.4.2"
},
"devDependencies": {
"@babel/core": "^7.17.4",
"@babel/preset-env": "^7.16.11",
"@popperjs/core": "^2.11.2",
"babel-loader": "^8.2.3",
"webpack": "^5.69.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4",
"zxcvbn": "^4.4.2"
},
"dependencies": {}
}