-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
52 lines (52 loc) · 1.54 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
{
"name": "@password-generator/check-strength",
"version": "2.0.4",
"main": "dist/index.js",
"files": [
"tsconfig.json",
"dist",
"LICENSE",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/password-generator/password-check-strength.git"
},
"author": "password-generator <passgenerator.org@gmail.com>",
"license": "MIT",
"scripts": {
"dev": "tsnd --respawn --transpile-only src/sample/index.ts",
"commit": "git-cz",
"format": "eslint src --ext ts",
"remove-old-dist": "rimraf dist",
"compile": "tsc",
"build": "npm run remove-old-dist && npm run compile"
},
"dependencies": {},
"devDependencies": {
"@password-generator/package": "^2.1.1",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/node": "^14.11.1",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"commitizen": "^4.2.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.5.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-typescript": "^2.2.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-import-helpers": "^1.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"git-cz": "^4.7.1",
"husky": "^4.3.0",
"lint-staged": "^10.4.0",
"prettier": "^2.1.2",
"rimraf": "^3.0.2",
"ts-node-dev": "^1.0.0-pre.62",
"typescript": "^4.0.2"
}
}