-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
89 lines (89 loc) · 2.36 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
84
85
86
87
88
89
{
"name": "@nikitababko/password-generator",
"version": "1.0.0",
"description": "Password generator",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"LICENSE.md",
"README.md",
"package.json"
],
"author": "Nikita Babko <niki.babko@gmail.com>",
"keywords": [
"password",
"generator",
"password generator",
"crypt",
"encryption",
"security",
"cryptography",
"privacy",
"encryption",
"security-tools",
"privacy-tools"
],
"license": "MIT",
"private": false,
"sideEffects": false,
"engines": {
"node": ">=16.15.0 <=18.16.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nikitababko/password-generator.git"
},
"bugs": {
"url": "https://github.com/nikitababko/password-generator/issues"
},
"homepage": "https://github.com/nikitababko/password-generator#readme",
"scripts": {
"start:dev": "ts-node src/index.dev.ts",
"start:example": "ts-node examples/index.ts",
"lint": "npx eslint . && bash -c tsc",
"clear": "rm -rf dist",
"build:lib": "pnpm clear && tsc -p tsconfig.production.json && rollup -c rollup.config.mjs",
"test:unit": "mocha 'src/index.spec.ts'",
"prepare": "npx husky install"
},
"devDependencies": {
"@commitlint/cli": "17.6.1",
"@commitlint/config-conventional": "17.6.1",
"@rollup/plugin-terser": "0.4.1",
"@rollup/plugin-typescript": "11.1.0",
"@types/chai": "4.3.3",
"@types/mocha": "9.1.1",
"@types/node": "18.7.18",
"@typescript-eslint/eslint-plugin": "5.59.1",
"@typescript-eslint/parser": "5.59.1",
"chai": "4.3.6",
"commitizen": "4.3.0",
"cspell": "6.31.1",
"cz-customizable": "7.0.0",
"eslint": "8.39.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "17.0.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-prettier": "4.2.1",
"husky": "8.0.1",
"lint-staged": "13.2.2",
"mocha": "10.2.0",
"prettier": "2.8.8",
"rollup": "3.21.2",
"rollup-plugin-size-snapshot": "0.12.0",
"ts-loader": "9.3.0",
"ts-node": "10.8.1",
"tslib": "2.4.0",
"typescript": "5.0.4"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
},
"cz-customizable": {
"config": "commitizen.config.js"
}
}
}