-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.61 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
{
"name": "passport-typetalk",
"version": "1.0.7",
"description": "Typetalk authentication strategy for Passport.",
"keywords": [
"passport",
"typetalk",
"auth",
"authn",
"authentication",
"identity"
],
"homepage": "https://github.com/is2ei/passport-typetalk",
"bugs": {
"url": "https://github.com/is2ei/passport-typetalk/issues"
},
"license": "MIT",
"author": {
"name": "Issei Horie",
"email": "[email protected]",
"url": "http://is2ei.com"
},
"files": [
"*"
],
"main": "./lib",
"repository": {
"type": "git",
"url": "https://github.com/is2ei/passport-typetalk.git"
},
"scripts": {
"docs": "jsdoc -c ./jsdoc.conf.json",
"lint": "eslint ./lib ./test ./bench",
"pretest": "npm install --no-save passport-oauth2",
"test": "npm run lint && npm run test:unit && npm run test:bench",
"test:unit": "mocha --require test/bootstrap/node test/*.test.js",
"test:bench": "mocha bench --reporter mochawesome --reporter-options consoleReporter=min",
"coverage": "nyc mocha --require test/bootstrap/node test/*.test.js",
"report-coverage": "nyc mocha --require test/bootstrap/node && nyc report --reporter=text-lcov | coveralls"
},
"devDependencies": {
"chai": "4.2.0",
"chai-passport-strategy": "1.0.1",
"coveralls": "3.0.11",
"eslint": "6.8.0",
"eslint-config-is2ei": "0.1.10",
"eslint-plugin-mocha": "6.3.0",
"jsdoc": "3.6.3",
"mocha": "7.1.1",
"mochawesome": "5.0.0",
"nyc": "15.0.0"
},
"peerDependencies": {
"passport-oauth2": "1.x.x"
},
"engines": {
"node": ">=0.4.0"
}
}