-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
83 lines (83 loc) · 2.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "password-meter",
"version": "3.10.2",
"description": "This password meter library is inspired by pointing system in http://www.passwordmeter.com/, in which the main purpose is to help the end users to have more stronger passwords.",
"keywords": [
"password",
"password meter",
"password strength"
],
"engines": {
"node": ">=12",
"npm": ">=6"
},
"files": [
"dist/*",
"docs/*"
],
"main": "dist/index.cjs",
"module": "dist/index.es.mjs",
"browser": "dist/index.umd.js",
"unpkg": "dist/index.umd.min.js",
"types": "dist/index.d.ts",
"typings": "dist/index.d.ts",
"homepage": "https://github.com/HamedFathi/PasswordMeter",
"bugs": {
"url": "https://github.com/HamedFathi/PasswordMeter/issues"
},
"license": "MIT",
"author": "Hamed Fathi <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/HamedFathi/PasswordMeter"
},
"scripts": {
"lint": "eslint src test --quiet --fix --ignore-path .gitignore",
"test": "jest",
"build": "npm run clean-dist && rollup -c",
"all": "npm run lint && npm run test && npm run build",
"all-docs": "npm run lint && npm run test && npm run build && npm run typedoc",
"coverage": "rimraf coverage && jest --coverage",
"typedoc": "npm run clean-docs && typedoc --out docs src/index.ts",
"watch": "rollup -cw",
"clean": "rimraf dist coverage",
"clean-dist": "rimraf dist",
"clean-coverage": "rimraf coverage",
"clean-docs": "rimraf docs"
},
"devDependencies": {
"@types/jsdom": "^16.2.13",
"@types/jest": "^27.0.3",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"jsdom": "^18.1.1",
"jest": "^27.3.1",
"ts-jest": "^27.0.7",
"lint-staged": "^12.1.2",
"prettier": "^2.5.0",
"rimraf": "^3.0.2",
"rollup": "^2.60.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.1",
"source-map-support": "^0.5.21",
"ts-node": "^10.4.0",
"tslib": "^2.3.1",
"typedoc": "^0.22.10",
"typescript": "^4.5.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"{src,test}/**/*.{js,ts,tsx}": [
"npm run lint",
"git add"
]
}
}