-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathpackage.json
50 lines (50 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "@borfast/arrispwgen",
"version": "5.0.1",
"description": "Arris Password of the Day Generator reusable library",
"keywords": [
"arris",
"arrispwd",
"arrispwgen",
"password-of-the-day",
"password of the day"
],
"homepage": "https://arrispwgen.borfast.com",
"bugs": {
"url": "https://github.com/borfast/arrispwgen/issues"
},
"license": "MIT",
"author": "Raúl Santos (https://www.borfast.com)",
"main": "./lib/arrispwgen.js",
"type": "module",
"files": [
"/lib",
"./lib/arrispwgen.d.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/borfast/arrispwgen.git"
},
"scripts": {
"build": "ttsc --project tsconfig.json",
"prepublishOnly": "npm run build",
"lint": "eslint -c .eslintrc.cjs 'src/**/*.{ts,tsx}' '__tests__/**/*.{ts,tsx}'",
"pretest": "npm run lint",
"test": "jest"
},
"devDependencies": {
"@jest/globals": "^25.5.2",
"@types/jest": "^25.2.3",
"@typescript-eslint/parser": "^2.34.0",
"@zoltu/typescript-transformer-append-js-extension": "^1.0.1",
"eslint": "^6.8.0",
"jest": "^29.7.0",
"ts-jest": "^25.5.1",
"ttypescript": "^1.5.12",
"typescript": "^3.9.7"
},
"engines": {
"node": ">=13.2.0",
"npm": ">=6"
}
}