-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
60 lines (60 loc) · 1.68 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
{
"name": "policy-password",
"version": "1.1.1",
"homepage": "https://github.com/tahesse/policy-password",
"repository": {
"type": "git",
"url": "https://github.com/tahesse/policy-password.git"
},
"packageManager": "[email protected]",
"description": "Generates random password compliant to a given policy. The policy can be sampled using constraints.",
"author": "Thomas Hesse (https://thomas-hesse.eu/)",
"license": "LGPL-3.0",
"main": "dist/main.js",
"types": "dist/main.d.ts",
"keywords": [
"generate",
"password",
"generator",
"policy",
"constraint"
],
"files": [
"dist/src/**/*",
"*.md",
"LICENSE"
],
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc",
"lint": "eslint \"{src,test}/**/*.ts\"",
"format": "yarn run lint --fix",
"test": "jest --detectOpenHandles",
"test:coverage": "jest --coverage",
"start": "ts-node",
"example:func": "EXAMPLE=\"examples/function/password.example\"; ts-node \"${EXAMPLE}.ts\"",
"example:class": "EXAMPLE=\"examples/class/password.example\"; ts-node \"${EXAMPLE}.ts\""
},
"devDependencies": {
"@types/eslint": "^8",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.12",
"@types/prettier": "^2",
"@types/rimraf": "^3",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.4.7",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.3",
"ts-node": "^10.4.0",
"tsconfig-paths": "^3.12.0",
"typescript": "^4.5.5"
},
"resolutions": {
"minimist": ">=1.2.6"
}
}