-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.66 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
{
"name": "@robotsandpencils/express-oauth",
"version": "0.1.0",
"description": "OAuth 2.0 Middleware with CSRF mitigation for Express",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"pre-push": "node pre-push.js",
"test": "node test.js",
"test:coverage": "nyc node test.js",
"test:coverage:ci": "mkdir -p ./coverage && touch ./coverage/lcov.info && nyc pnpm run test:ci && nyc report --reporter=text-lcov > ./coverage/lcov.info",
"test:coveralls": "nyc pnpm run test:ci && nyc report --reporter=text-lcov | coveralls",
"test:ci": "node test.js -r tap,summary"
},
"pre-push": [
"lint",
"test",
"pre-push"
],
"repository": {
"type": "git",
"url": "git+https://github.com/RobotsAndPencils/express-oauth.git"
},
"author": "Andy Wright <[email protected]> (https://github.com/losandes)",
"license": "MIT",
"bugs": {
"url": "https://github.com/RobotsAndPencils/express-oauth/issues"
},
"homepage": "https://github.com/RobotsAndPencils/express-oauth#readme",
"keywords": [
"express",
"expressjs",
"oauth",
"oauth2",
"express-middleware",
"expressjs-middleware"
],
"devDependencies": {
"@polyn/logger": "~0.5.2",
"coveralls": "~3.1.1",
"eslint": "~8.1.0",
"eslint-config-standard": "~16.0.3",
"eslint-plugin-import": "~2.25.2",
"eslint-plugin-node": "~11.1.0",
"eslint-plugin-promise": "~5.1.1",
"nyc": "~15.0.1",
"pre-push": "~0.1.1",
"supposed": "~1.1.1",
"unexpected": "~11.14.0"
},
"dependencies": {
"@polyn/blueprint": "~2.5.4",
"@polyn/immutable": "~1.0.11",
"cookie": "~0.4.1",
"jsonwebtoken": "~8.5.1"
}
}