This repository has been archived by the owner on Mar 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 118
/
package.json
89 lines (89 loc) · 2.63 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
88
89
{
"name": "@feathersjs/authentication",
"description": "Add Authentication to your FeathersJS app.",
"version": "2.1.7",
"homepage": "https://github.com/feathersjs/authentication",
"main": "lib/",
"keywords": [
"feathers",
"feathers-plugin"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/feathersjs/authentication.git"
},
"author": {
"name": "Feathers contributors",
"email": "[email protected]",
"url": "https://feathersjs.com"
},
"contributors": [],
"bugs": {
"url": "https://github.com/feathersjs/authentication/issues"
},
"engines": {
"node": ">= 6"
},
"scripts": {
"publish": "git push origin --tags && npm run changelog && git push origin",
"release:patch": "npm version patch && npm publish --access public",
"release:minor": "npm version minor && npm publish --access public",
"release:major": "npm version major && npm publish --access public",
"release:pre": "npm version prerelease && npm publish --tag pre --access public",
"changelog": "github_changelog_generator && git add CHANGELOG.md && git commit -am \"Updating changelog\"",
"lint": "semistandard --fix",
"mocha": "mocha --opts mocha.opts",
"test": "npm run lint && npm run coverage",
"coverage": "istanbul cover node_modules/mocha/bin/_mocha -- --opts mocha.opts"
},
"semistandard": {
"env": [
"mocha"
]
},
"directories": {
"lib": "lib"
},
"dependencies": {
"@feathersjs/commons": "^2.0.0",
"@feathersjs/errors": "^3.0.0",
"@feathersjs/socket-commons": "^3.1.2",
"debug": "^3.1.0",
"jsonwebtoken": "^8.0.0",
"lodash.clone": "^4.5.0",
"lodash.merge": "^4.6.0",
"lodash.omit": "^4.5.0",
"lodash.pick": "^4.4.0",
"long-timeout": "^0.1.1",
"ms": "^2.0.0",
"passport": "^0.4.0",
"uuid": "^3.1.0"
},
"devDependencies": {
"@feathersjs/authentication-jwt": "^2.0.0",
"@feathersjs/authentication-local": "^1.0.0",
"@feathersjs/configuration": "^2.0.0",
"@feathersjs/express": "^1.0.0",
"@feathersjs/feathers": "^3.0.5",
"@feathersjs/primus": "^3.0.3",
"@feathersjs/socketio": "^3.0.0",
"body-parser": "^1.15.2",
"chai": "^4.1.0",
"chai-uuid": "^1.0.6",
"feathers-memory": "^2.0.0",
"istanbul": "^1.1.0-alpha.1",
"jshint": "^2.9.3",
"localstorage-memory": "^1.0.2",
"mocha": "^5.0.0",
"mongodb": "^3.0.0",
"passport-strategy": "^1.0.0",
"primus": "^7.0.0",
"semistandard": "^13.0.1",
"sinon": "^7.3.1",
"sinon-chai": "^3.0.0",
"socket.io-client": "^2.0.0",
"superagent": "^3.0.0",
"ws": "^6.0.0"
}
}