forked from feathersjs-ecosystem/authentication-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.5 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
{
"name": "feathers-authentication-client",
"description": "The authentication plugin for feathers-client",
"version": "0.1.6",
"homepage": "https://github.com/feathersjs/feathers-authentication-client",
"main": "lib/index",
"keywords": [
"feathers",
"feathers-plugin"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/feathersjs/feathers-authentication-client.git"
},
"author": {
"name": "Feathers contributors",
"email": "hello@feathersjs.com",
"url": "https://feathersjs.com"
},
"contributors": [],
"bugs": {
"url": "https://github.com/feathersjs/feathers-authentication-client/issues"
},
"engines": {
"node": ">= 4.6.0"
},
"scripts": {
"prepublish": "npm run compile",
"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 && 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",
"coverage": "istanbul cover _mocha -- --opts mocha.opts",
"test": "npm run compile && npm run lint && npm run coverage",
"start": "npm run compile && node example/app"
},
"semistandard": {
"sourceType": "module",
"env": [
"mocha"
]
},
"directories": {
"lib": "lib"
},
"dependencies": {
"debug": "^2.2.0",
"feathers-errors": "^2.4.0",
"jwt-decode": "^2.1.0"
},
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-core": "^6.17.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.16.0",
"body-parser": "^1.15.2",
"chai": "^3.5.0",
"feathers": "^2.0.2",
"feathers-authentication": "^1.0.0",
"feathers-authentication-jwt": "^0.3.0",
"feathers-authentication-local": "^0.3.0",
"feathers-hooks": "^1.6.0",
"feathers-memory": "^0.8.0",
"feathers-primus": "^1.4.1",
"feathers-rest": "^1.5.1",
"feathers-socketio": "^1.4.1",
"istanbul": "^1.1.0-alpha.1",
"localstorage-memory": "^1.0.2",
"mocha": "^3.1.2",
"primus": "^6.0.3",
"primus-emitter": "^3.1.1",
"rimraf": "^2.5.4",
"semistandard": "^9.1.0",
"socket.io-client": "^1.5.0",
"superagent": "^2.3.0",
"ws": "^1.1.1"
}
}