This repository was archived by the owner on May 8, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.99 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.99 KB
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
{
"name": "feathers-authentication-passport",
"description": "Generic PassportJS strategy adapter for feathers-authentication",
"version": "1.1.4",
"homepage": "https://github.com/compwright/feathers-authentication-passport",
"main": "src/",
"keywords": [
"feathers",
"feathers-plugin",
"feathers-authentication",
"passport"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/compwright/feathers-authentication-passport.git"
},
"author": {
"name": "Jonathon Hill",
"email": "jhill9693@gmail.com"
},
"contributors": [],
"bugs": {
"url": "https://github.com/compwright/feathers-authentication-passport/issues"
},
"engines": {
"node": ">= 10"
},
"scripts": {
"publish": "git push origin --tags && npm run changelog && git push origin",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"changelog": "github_changelog_generator -u compwright -p feathers-authentication-passport && git add CHANGELOG.md && git commit -am \"Updating changelog\"",
"lint": "semistandard src/**/*.js test/**/*.js --fix",
"mocha": "mocha --recursive test/",
"coverage": "nyc npm run mocha",
"test": "npm run lint && npm run coverage",
"start": "node example/app"
},
"semistandard": {
"sourceType": "module",
"env": [
"mocha"
]
},
"directories": {
"lib": "src"
},
"nyc": {
"cache": true,
"cacheDir": ".nyc_cache",
"include": [
"src/**/*.js"
],
"reporter": [
"lcov",
"text-summary"
]
},
"dependencies": {
"debug": "^4.3.4"
},
"devDependencies": {
"body-parser": "^1.20.1",
"feathers": "^2.2.4",
"feathers-authentication": "^1.3.1",
"feathers-hooks": "^2.1.2",
"feathers-memory": "^4.1.0",
"mocha": "latest",
"nyc": "latest",
"passport-anonymous": "^1.0.1",
"semistandard": "latest"
}
}