forked from jaredhanson/chai-connect-middleware
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.32 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
{
"name": "@passport-next/chai-connect-middleware",
"version": "1.0.1",
"description": "Helpers for testing Connect middleware with the Chai assertion library.",
"author": {
"name": "Passport Next Developers",
"url": "https://github.com/orgs/passport-next/people"
},
"homepage": "https://github.com/passport-next/chai-connect-middleware",
"contributors": [],
"bugs": {
"url": "https://github.com/passport-next/chai-connect-middleware/issues"
},
"dependencies": {},
"devDependencies": {
"@mysticatea/eslint-plugin": "^11.0.0",
"@passport-next/eslint-config-passport-next": "^2.0.0",
"chai": "4.x.x",
"coveralls": "^3.0.9",
"eslint": "^6.7.2",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-array-func": "^3.1.3",
"eslint-plugin-compat": "^3.3.0",
"eslint-plugin-eslint-comments": "^3.1.2",
"eslint-plugin-html": "^6.0.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-jsdoc": "^15.12.2",
"eslint-plugin-markdown": "^1.0.1",
"eslint-plugin-no-use-extend-native": "^0.4.1",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-sonarjs": "^0.4.0",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-unicorn": "^10.0.0",
"mocha": "^6.2.2",
"nunjucks": "^3.2.0",
"nyc": "^14.1.1",
"typescript": "^3.7.3"
},
"engines": {
"node": ">=8.0.0"
},
"keywords": [
"express",
"connect",
"auth",
"authn",
"authentication"
],
"license": "MIT",
"main": "./lib",
"repository": {
"type": "git",
"url": "https://github.com/passport-next/chai-connect-middleware"
},
"scripts": {
"templates": "node ./templates/gen.js",
"init-new-project": "node ./templates/gen --init",
"lint": "eslint --max-warnings 0 --ext js,md .",
"lintfix": "eslint --ext js,md . --fix",
"testonly": "mocha --reporter spec --require test/bootstrap/node test/*.test.js test/**/*.test.js",
"test": "nyc --report-dir=var/coverage --reporter=lcov --reporter=text npm run testonly",
"coveralls": "nyc report --report-dir=var/coverage --reporter=text-lcov | coveralls"
}
}