-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.36 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "passport-strategy-runner",
"version": "0.0.0-semantic-release",
"description": "Run passport stragtegies, without passport.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"test": "npm run build && npm run lint && npm run test:unittest",
"precommit:test": "npm run build && lint-staged && npm run precommit:unittest",
"build": "tsc",
"clean": "rm -rf dist coverage",
"test:unittest": "tsc -p test && nyc mocha 'test/**/*.@(ts|js)'",
"precommit:unittest": "tsc -p test && mocha --reporter progress 'test/**/*.@(ts|js)'",
"lint": "npm run lint:source && npm run lint:tests",
"lint:source": "tslint -c tslint.json -t stylish 'src/**/*.ts'",
"lint:tests": "tslint -c test/tslint.json -t stylish 'test/**/*.ts'",
"prepare": "npm run build",
"prepublishOnly": "npm run build && npm test",
"semantic-release": "semantic-release"
},
"lint-staged": {
"src/**/*.ts": [
"tslint -c tslint.json -t stylish"
],
"test/**/*.ts": [
"tslint -c test/tslint.json -t stylish"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/jwalton/passport-strategy-runner.git"
},
"keywords": [
"passport",
"security",
"authentication"
],
"author": {
"name": "Jason Walton",
"email": "[email protected]",
"url": "https://github.com/jwalton/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/jwalton/passport-strategy-runner/issues"
},
"homepage": "https://github.com/jwalton/passport-strategy-runner#readme",
"engines": {
"node": ">=6.0.0",
"npm": ">5.0.0"
},
"devDependencies": {
"@types/chai": "^4.1.3",
"@types/mocha": "^8.0.0",
"@types/node": "^15.0.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.0.1",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"mocha": "^8.1.1",
"nyc": "^15.0.0",
"passport-strategy": "^1.0.0",
"semantic-release": "^17.0.0",
"ts-node": "^10.0.0",
"tslint": "^6.0.0",
"typescript": "^4.0.2"
},
"husky": {
"hooks": {
"pre-commit": "npm run precommit:test"
}
},
"greenkeeper": {
"ignore": [
"@types/node"
]
},
"dependencies": {
"@types/passport": "^1.0.0",
"@types/passport-strategy": "^0.2.33",
"promise-breaker": "^5.0.0"
}
}