-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.26 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
{
"name": "@passcert/pwrules-annotations",
"version": "2.0.1",
"description": "This package allows the parsing of Apple's password rules and is based in Apple's javascript parser. This improved version adds two more rules: blocklist and minclasses. You can also specify ranges of characters.",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"files": ["lib/"],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"tsc": "tsc -p tsconfig.json && tsc -p tsconfig-cjs.json && npm run copy-blocklist-data",
"prepublish": "npm run tsc",
"test-program": "cd test-package && npm run tsc",
"copy-blocklist-data": "echo \"./lib/cjs/data/ ./lib/esm/data\" | xargs -n 1 cp -v src/data/*.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/passcert-project/pwrules-annotations.git"
},
"author": "",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/passcert-project/pwrules-annotations/issues"
},
"homepage": "https://github.com/passcert-project/pwrules-annotations#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"eslint": "^7.27.0",
"typescript": "^4.3.2",
"ansi-regex": ">=5.0.1"
},
"dependencies": {
"@types/node": "^16.9.1"
}
}