forked from jaredhanson/passport-strategy
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.57 KB
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
56
57
58
59
60
61
62
{
"name": "@passport-next/passport-strategy",
"version": "2.0.0",
"type": "module",
"exports": {
"types": "./dist/index.d.ts",
"default": "./lib/index.js"
},
"description": "An abstract class implementing Passport's strategy API.",
"keywords": [
"passport",
"strategy"
],
"author": {
"name": "Rowan Wookey",
"email": "admin@rwky.net"
},
"contributors": [
"Brett Zamir"
],
"repository": {
"type": "git",
"url": "git+https://github.com/passport-next/passport-strategy.git"
},
"homepage": "https://github.com/passport-next/passport-strategy",
"bugs": {
"url": "https://github.com/passport-next/passport-strategy/issues"
},
"license": "MIT",
"main": "./lib",
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.5",
"@types/chai": "^5.2.3",
"@types/mocha": "^10.0.10",
"c8": "^12.0.0",
"chai": "6.2.x",
"eslint": "^10.8.1",
"eslint-config-ash-nazg": "^42.3.1",
"mocha": "11.8.x",
"typescript": "^6.0.3"
},
"browserslist": [
"node >= 10.0.0"
],
"engines": {
"node": "^22.22.2 || >=24.15.0"
},
"scripts": {
"prepublishOnly": "npm run build",
"tsc": "tsc",
"tsc-prod": "tsc -p tsconfig-prod.json",
"build": "npm run tsc-prod && npm run attw",
"attw": "attw --pack . --profile node16 --profile esm-only",
"lint": "eslint --ext js,cjs,md,html . --max-warnings 0",
"lintfix": "eslint --ext js,cjs,md,html . --fix",
"mocha": "mocha --reporter spec test/*.test.js",
"test": "c8 npm run mocha"
},
"allowScripts": {
"unrs-resolver": false
}
}