-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1 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
{
"name": "pbrute",
"version": "0.3.2",
"description": "A password strength calculator",
"main": "dist/node/index.js",
"scripts": {
"lint": "tsc --noEmit && eslint \"src/**/*.{js,ts}\" --quiet --fix",
"test": "ava",
"coverage": "nyc ava -t",
"build": "tsc -p tsconfig.json && cp -r dictionaries dist/node"
},
"author": "Alex Gustafsson",
"license": "MIT",
"devDependencies": {
"@types/node": "^15.12.2",
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@typescript-eslint/parser": "^4.26.1",
"ava": "^3.15.0",
"eslint": "^7.28.0",
"nyc": "^15.1.0",
"ts-node": "^10.0.0",
"typescript": "^4.3.2"
},
"ava": {
"extensions": {
"ts": "module"
},
"nodeArguments": [
"--loader=ts-node/esm",
"--experimental-specifier-resolution=node"
],
"nonSemVerExperiments": {
"configurableModuleFormat": true
},
"files": [
"test/**/*.spec.ts"
],
"concurrency": 5,
"failFast": false,
"verbose": true
}
}