forked from vol7/authentication
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.07 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 3.07 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "feathers-authentication",
"description": "Add Authentication to your FeathersJS app.",
"version": "1.3.0",
"homepage": "https://github.com/feathersjs/feathers-authentication",
"main": "lib/",
"types": [
"./index.d.ts",
"./client.d.ts"
],
"keywords": [
"feathers",
"feathers-plugin"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/feathersjs/feathers-authentication.git"
},
"author": {
"name": "Feathers contributors",
"email": "hello@feathersjs.com",
"url": "https://feathersjs.com"
},
"contributors": [],
"bugs": {
"url": "https://github.com/feathersjs/feathers-authentication/issues"
},
"engines": {
"node": ">= 4"
},
"scripts": {
"start": "node example/app",
"prepublish": "npm run compile",
"publish": "git push origin && git push origin --tags",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"release:pre": "npm publish --tag next",
"changelog": "github_changelog_generator && git add CHANGELOG.md && git commit -am \"Updating changelog\"",
"compile": "rimraf lib/ && babel -d lib/ src/",
"watch": "babel --watch -d lib/ src/",
"lint": "semistandard --fix",
"mocha": "mocha --opts mocha.opts",
"test": "npm run compile && npm run lint && npm run coverage && nsp check",
"coverage": "istanbul cover node_modules/mocha/bin/_mocha -- --opts mocha.opts"
},
"semistandard": {
"sourceType": "module",
"env": [
"mocha"
]
},
"directories": {
"lib": "lib"
},
"dependencies": {
"debug": "^3.1.0",
"feathers-authentication-client": "^0.3.1",
"feathers-commons": "^0.8.4",
"feathers-errors": "^2.4.0",
"feathers-socket-commons": "^2.3.1",
"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": {
"babel-cli": "^6.14.0",
"babel-core": "^6.18.2",
"babel-plugin-add-module-exports": "^0.2.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.14.0",
"body-parser": "^1.15.2",
"chai": "^4.1.0",
"chai-uuid": "^1.0.6",
"feathers": "^2.0.2",
"feathers-authentication-jwt": "^0.3.0",
"feathers-authentication-local": "^0.4.0",
"feathers-configuration": "^0.4.1",
"feathers-hooks": "^2.0.0",
"feathers-memory": "^1.0.0",
"feathers-primus": "^2.0.0",
"feathers-rest": "^1.5.0",
"feathers-socketio": "^2.0.0",
"istanbul": "^1.1.0-alpha.1",
"jshint": "^2.9.3",
"localstorage-memory": "^1.0.2",
"mocha": "^4.0.0",
"mongodb": "^2.2.29",
"nsp": "^2.6.1",
"passport-strategy": "^1.0.0",
"primus": "^7.0.0",
"rimraf": "^2.5.4",
"semistandard": "^11.0.0",
"sinon": "^4.0.0",
"sinon-chai": "^2.8.0",
"socket.io-client": "^2.0.0",
"superagent": "^3.0.0",
"ws": "^3.1.0"
}
}