-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
53 lines (53 loc) · 1.34 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
{
"name": "ltpa",
"version": "2.0.0",
"description": "Ltpa token generation and validation",
"type": "module",
"exports": "./dist/index.js",
"scripts": {
"build": "npm run clean && tsc",
"clean": "rimraf dist",
"watch": "npm run clean && tsc -w",
"prepublishOnly": "npm run build",
"test": "vitest run --coverage.enabled --coverage.reporter=json-summary",
"test:watch": "vitest watch",
"test:watch:coverage": "vitest watch --coverage",
"report-coverage": "cat .coverage/lcov.info | codecov",
"prep": "npm install && husky && chmod ug+x .husky/*"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/markusberg/ltpa.git"
},
"keywords": [
"ltpa",
"token",
"authentication",
"validation",
"lotus",
"ibm",
"websphere"
],
"author": "Markus Berg <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/markusberg/ltpa/issues"
},
"homepage": "https://github.com/markusberg/ltpa#readme",
"dependencies": {
"iconv-lite": "~0.6.3"
},
"devDependencies": {
"@types/node": "^18.19.15",
"@vitest/coverage-v8": "^1.2.2",
"husky": "^9.0.10",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"typescript": "^5.3.3",
"vitest": "^1.2.2"
}
}