-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.17 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
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "passport-steam-openid",
"version": "1.1.4",
"description": "Passport strategy for authenticating with steam openid without the use of 3rd party openid packages.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "npx tsc",
"format": "npx prettier --write \"src/**/*.ts\"",
"lint": "npx eslint \"{src,test}/**/*.ts\" --fix",
"prepare": "npx husky install",
"semantic-release": "semantic-release",
"test": "npx mocha -r ts-node/register 'test/*.ts'",
"test:integration": "npx mocha -r ts-node/register 'test/integration/*.ts'",
"test:coverage": "npx nyc --reporter=text \"npm run test:integration && npm run test\"",
"test:coverage:html": "npx nyc --reporter=html \"npm run test:integration && npm run test\""
},
"keywords": [],
"author": "glencoco",
"license": "MIT",
"dependencies": {
"axios": "^1.4.0",
"passport": "^0.6.0"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/chai": "^4.3.5",
"@types/chai-as-promised": "^7.1.5",
"@types/express": "^4.17.17",
"@types/express-session": "^1.17.7",
"@types/mocha": "^10.0.1",
"@types/node": "^20.3.1",
"@types/passport": "^1.0.12",
"@types/sinon": "^10.0.15",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"chai-http": "^4.4.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-sonarjs": "^0.19.0",
"express": "^4.18.2",
"express-session": "^1.17.3",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"mocha": "^10.2.0",
"nock": "^13.3.2",
"nyc": "^15.1.0",
"prettier": "^2.8.8",
"semantic-release": "^24.0.0",
"sinon": "^15.2.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"repository": {
"type": "git",
"url": "https://github.com/danocmx/passport-steam-openid.git"
}
}