-
Notifications
You must be signed in to change notification settings - Fork 98
/
package.json
executable file
·103 lines (103 loc) · 3.28 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "feathers-authentication-management",
"description": "Adds sign up verification, forgotten password reset, and other capabilities to local feathers-authentication",
"version": "5.1.0",
"repository": {
"type": "git",
"url": "git://github.com/feathersjs-ecosystem/feathers-authentication-management.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/feathersjs-ecosystem/feathers-authentication-management/issues"
},
"homepage": "https://feathers-a-m.netlify.app/",
"keywords": [
"feathers",
"feathers-plugin",
"hook",
"hooks",
"services",
"authentication",
"verification"
],
"author": {
"name": "Feathers contributors",
"email": "[email protected]",
"url": "https://feathersjs.com"
},
"engines": {
"node": ">= 14"
},
"main": "dist/",
"types": "dist/",
"directories": {
"src": "src"
},
"files": [
"CHANGELOG.md",
"LICENSE",
"README.md",
"src/**",
"lib/**",
"dist/**"
],
"scripts": {
"preversion": "npm run lint && npm run test && npm run compile",
"publish": "git push origin --tags && npm run changelog && git push origin",
"release:pre": "npm version prerelease --preid=pre && npm publish --tag pre",
"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 feathersjs-ecosystem -p feathers-authentication-management && git add CHANGELOG.md && git commit -am \"Updating changelog\"",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"mocha": "cross-env TS_NODE_PROJECT='tsconfig.test.json' mocha --require ts-node/register --timeout 40000",
"coverage": "nyc npm run mocha",
"test": "npm run mocha",
"compile": "shx rm -rf dist/ && tsc",
"docs": "vitepress dev docs --port 3333 --open",
"docs:build": "vitepress build docs",
"check-updates": "ncu -u && ncu -u --cwd examples/js"
},
"peerDependencies": {
"@feathersjs/feathers": "^5.0.0"
},
"dependencies": {
"@feathersjs/authentication": "^5.0.11",
"@feathersjs/authentication-client": "^5.0.11",
"@feathersjs/authentication-local": "^5.0.11",
"@feathersjs/errors": "^5.0.11",
"bcryptjs": "^2.4.3",
"debug": "^4.3.4",
"feathers-hooks-common": "^8.1.1",
"lodash": "^4.17.21",
"type-fest": "^4.6.0"
},
"devDependencies": {
"@feathersjs/feathers": "^5.0.11",
"@feathersjs/memory": "^5.0.11",
"@feathersjs/socketio": "^5.0.11",
"@feathersjs/transport-commons": "^5.0.11",
"@types/bcryptjs": "^2.4.5",
"@types/debug": "^4.1.10",
"@types/lodash": "^4.14.200",
"@types/mocha": "^10.0.3",
"@types/node": "^20.8.10",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"@unocss/preset-uno": "^0.57.2",
"@vueuse/core": "^10.5.0",
"cross-env": "^7.0.3",
"date-fns": "^2.30.0",
"eslint": "^8.53.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"shx": "^0.3.4",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"unocss": "^0.57.2",
"unplugin-vue-components": "^0.25.2",
"vitepress": "^1.0.0-rc.24"
}
}