-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
65 lines (65 loc) · 1.69 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
{
"name": "vue-simple-password-meter",
"version": "1.3.4",
"private": false,
"description": "A really simple password strength meter. customizable with css",
"author": {
"name": "Milad Dehghan",
"email": "miladd3@gmail.com",
"url": "/~https://github.com/miladd3"
},
"scripts": {
"serve": "vite serve",
"clean": "rimraf ./dist",
"build": "npm run clean && vite build",
"build:npm": "npm run clean && vite build",
"gitvue2": "git checkout vue-2 && git pull && npm clean-install",
"test": "vitest"
},
"main": "dist/vue-simple-password-meter.umd.js",
"unpkg": "dist/vue-simple-password-meter.umd.js",
"typings": "src/types/index.d.ts",
"types": "src/types/index.d.ts",
"files": [
"dist",
"src/types"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"@vitejs/plugin-vue": "^3.2.0",
"@vue/test-utils": "^2.3.2",
"happy-dom": "^9.1.9",
"rimraf": "^4.4.1",
"typescript": "^5.0.4",
"vite": "^3.2.4",
"vite-plugin-css-injected-by-js": "^2.1.1",
"vitest": "^0.30.0",
"vue": "^3.2",
"vue-jest": "^5.0.0-0"
},
"browserslist": [
"> 1%",
"last 2 versions"
],
"bugs": {
"url": "/~https://github.com/miladd3/vue-simple-password-meter/issues",
"email": "miladd3@gmail.com"
},
"keywords": [
"vue",
"password strength",
"password meter",
"password",
"simple",
"strength"
],
"license": "MIT",
"repository": {
"url": "/~https://github.com/miladd3/vue-simple-password-meter"
},
"homepage": "/~https://github.com/miladd3/vue-simple-password-meter#readme",
"resolutions": {
"yargs-parser": "15.0.1"
}
}