-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.43 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
{
"name": "@articulate/authentic",
"version": "4.0.0",
"description": "Proper validation of JWT's against JWK's",
"repository": "git@github.com:articulate/authentic.git",
"license": "MIT",
"author": "articulate",
"exports": {
".": {
"import": "./dist/authentic.mjs",
"require": "./dist/authentic.js",
"types": "./dist/authentic.d.ts"
}
},
"main": "dist/authentic.js",
"module": "dist/authentic.mjs",
"typings": "dist/authentic.d.ts",
"files": [
"dist/**/*",
"src/**/*"
],
"scripts": {
"build": "rollup --config rollup.config.ts --configPlugin typescript",
"lint": "eslint .",
"test": "jest",
"test:watch": "jest --watchAll",
"test:ci": "npm run lint && npm run test:coverage",
"test:coverage": "jest --collectCoverage",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@hapi/boom": "^10.0.1",
"jose": "^5.2.0"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@rollup/plugin-typescript": "^11.1.2",
"@types/jest": "^29.5.3",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"esbuild": "^0.19.2",
"eslint": "^8.47.0",
"jest": "^29.6.2",
"nock": "^13.3.3",
"rollup": "^3.28.0",
"rollup-plugin-dts": "^6.0.0",
"rollup-plugin-esbuild": "^5.0.0",
"ts-jest": "^29.1.1",
"tslib": "^2.6.1",
"typescript": "^5.1.6"
},
"engines": {
"node": ">=18"
}
}