This repository was archived by the owner on Oct 14, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·82 lines (82 loc) · 2.47 KB
/
package.json
File metadata and controls
executable file
·82 lines (82 loc) · 2.47 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
76
77
78
79
80
81
82
{
"name": "@feathers-plus/authentication-local-management",
"description": "Adds sign up verification, forgotten password reset, and other capabilities to local feathers-authentication ",
"version": "3.0.0",
"repository": {
"type": "git",
"url": "git://github.com/feathersjs/authentication-local-management.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/feathersjs/authentication-feathers-management/issues"
},
"homepage": "https://github.com/feathers-plus/authentication-local-management",
"keywords": [
"feathers",
"feathers-plus",
"feathers-plugin",
"hook",
"hooks",
"services",
"authentication",
"verification"
],
"author": {
"name": "John Szwaronek",
"email": "johnsz9999@gmail.com"
},
"engines": {
"node": ">= 8.12.0"
},
"main": "src/",
"directories": {
"lib": "src"
},
"scripts": {
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"public": "npm publish --access public",
"publish": "git push origin --tags && npm run changelog && git push origin",
"changelog": "github_changelog_generator && git add CHANGELOG.md && git commit -am \"Updating changelog\"",
"test": "npm run lint && npm run coverage",
"lint": "semistandard src/**/*.js test/**/*.js --fix",
"coverage": "istanbul cover _mocha -- --opts mocha.opts",
"mocha": "mocha --opts mocha.opts",
"start": "node example/app"
},
"semistandard": {
"env": [
"mocha"
]
},
"dependencies": {
"@feathersjs/errors": "^3.3.4",
"bcryptjs": "^2.3.0",
"debug": "^3.2.6",
"feathers-hooks-common": "^4.20.0",
"lodash.merge": "^4.6.1"
},
"devDependencies": {
"@feathers-plus/commons": "^0.3.1",
"@feathers-plus/test-utils": "^0.3.5",
"@feathersjs/authentication": "^2.1.13",
"@feathersjs/authentication-jwt": "^2.0.7",
"@feathersjs/authentication-local": "^1.2.7",
"@feathersjs/client": "^3.7.5",
"@feathersjs/configuration": "^2.0.4",
"@feathersjs/express": "^1.2.7",
"@feathersjs/feathers": "^3.2.3",
"@feathersjs/socketio": "^3.2.7",
"bcrypt": "^3.0.2",
"chai": "^4.2.0",
"feathers-memory": "^2.2.0",
"feathers-sequelize": "^3.1.3",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^3.3.0",
"semistandard": "^11.0.0",
"sequelize": "^4.41.1",
"socket.io-client": "^2.1.1",
"sqlite3": "^4.0.4"
}
}