-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 1.71 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
{
"name": "cracklibjs",
"description": "Pure JS Cracklib-inspired library for Node.",
"version": "4.0.16",
"author": {
"email": "[email protected]",
"name": "Zac Anger",
"url": "http://zacanger.com"
},
"license": "MIT",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"build": "tsc",
"clean": "rm -rf lib",
"cover": "nyc npm run test:tape",
"postbuild": "cp src/cracklib-small.txt lib/",
"prebuild": "run-s -s clean test",
"preversion": "npm run build",
"start": "node index",
"test": "run-s -s test:ts test:lint cover",
"test:lint": "eslint src/*.ts --fix",
"test:tape": "tape -r ts-node/register src/*.test.ts",
"test:ts": "tsc --noEmit"
},
"homepage": "https://github.com/zacanger/cracklibjs#readme",
"repository": {
"type": "git",
"url": "https://github.com/zacanger/cracklibjs.git"
},
"bugs": "https://github.com/zacanger/cracklibjs/issues",
"keywords": [
"cracklib",
"libcrack",
"password",
"security"
],
"devDependencies": {
"@types/node": "20.10.6",
"@types/tape": "5.6.4",
"eslint": "8.57.0",
"eslint-config-love": "52.0.0",
"npm-run-all": "4.1.5",
"nyc": "15.1.0",
"sortpack": "2.3.5",
"tape": "5.7.2",
"ts-node": "10.9.2",
"typescript": "5.3.3"
},
"engines": {
"node": ">=18.0.0"
},
"nyc": {
"exclude": [
"src/*.test.ts"
],
"extensions": [
"*.ts"
],
"include": [
"src/*.ts"
],
"instrument": true,
"reporter": [
"text",
"html",
"json"
],
"require": [
"ts-node/register"
],
"sourceMap": true
},
"os": [
"darwin",
"freebsd",
"linux",
"openbsd"
]
}