-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
65 lines (65 loc) · 1.88 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": "@password-generator/package",
"version": "2.1.2",
"description": "Package with the algorithm to generate password",
"main": "dist/index.js",
"types": "dist/index.js",
"private": false,
"scripts": {
"commit": "git-cz",
"format": "eslint src --ext ts",
"remove-old-dist": "rimraf dist",
"compile-dist": "tsc",
"dist": "npm run remove-old-dist && npm run compile-dist",
"dev:ts": "ts-node dev/index.ts",
"dev:js": "node dev/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/password-generator/password-generator-package.git"
},
"keywords": [
"password",
"package",
"generate",
"generate-password",
"password-generator"
],
"author": "Mikael Rolim de Aquino <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/password-generator/password-generator-package/issues"
},
"homepage": "https://github.com/password-generator/password-generator-package#readme",
"files": [
"tsconfig.json",
"dist",
"LICENSE",
"README.md"
],
"devDependencies": {
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^9.1.2",
"@types/node": "^12.7.11",
"@typescript-eslint/eslint-plugin": "^3.9.1",
"@typescript-eslint/parser": "^3.9.1",
"commitizen": "^4.1.2",
"cz-conventional-changelog": "^3.2.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.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"prettier": "^2.1.2",
"rimraf": "^3.0.2",
"ts-node": "^8.4.1",
"typescript": "^3.6.3"
}
}