This repository has been archived by the owner on Sep 4, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
90 lines (90 loc) · 3.17 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
{
"name": "@feathersjs/client",
"description": "A module that consolidates Feathers client modules for REST (jQuery, Request, Superagent) and Websocket (Socket.io, Primus) connections",
"version": "3.7.1",
"repository": {
"type": "git",
"url": "https://github.com/feathersjs/client.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/feathersjs/client/issues"
},
"homepage": "https://github.com/feathersjs/client",
"keywords": [
"feathers",
"feathers-plugin"
],
"author": "Feathers contributors",
"engines": {
"node": ">= 6"
},
"main": "index.js",
"scripts": {
"clean": "shx rm -rf dist/ && shx mkdir -p dist",
"reinstall": "shx rm -rf node_modules && npm install",
"add-dist": "npm run clean && npm run build && git add dist/ --force && git commit -am \"Updating dist\"",
"publish": "git push origin --tags && npm run changelog && git push origin",
"bower": "node version && git add bower.json && git commit -am \"Update version\"",
"changelog": "github_changelog_generator && git add CHANGELOG.md && git commit -am \"Updating changelog\"",
"release:pre": "npm run reinstall && npm run add-dist && npm version prerelease && npm run bower && npm publish --tag pre --access public",
"release:patch": "npm run reinstall && npm run add-dist && npm version patch && npm run bower && npm publish --access public",
"release:minor": "npm run reinstall && npm run add-dist && npm version minor && npm run bower && npm publish --access public",
"release:major": "npm run reinstall && npm run add-dist && npm version major && npm run bower && npm publish --access public",
"lint": "semistandard --fix test/ index.js",
"mocha": "mocha --opts mocha.opts",
"saucelabs": "grunt",
"test": "npm run lint && npm run mocha",
"travis": "npm run build && npm test && npm run saucelabs",
"build": "npm run clean && npm run webpack",
"build:test": "cd browser && webpack",
"webpack": "parallel-webpack"
},
"semistandard": {
"env": [
"mocha"
]
},
"browserslist": [
"last 2 versions",
"IE 10"
],
"greenkeeper": {
"ignore": "jsdom"
},
"dependencies": {
"@feathersjs/authentication-client": "1.0.5",
"@feathersjs/errors": "3.3.3",
"@feathersjs/feathers": "3.2.2",
"@feathersjs/primus-client": "1.1.3",
"@feathersjs/rest-client": "1.4.4",
"@feathersjs/socketio-client": "1.1.3"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@feathersjs/express": "^1.2.6",
"@feathersjs/primus": "^3.2.4",
"@feathersjs/socketio": "^3.2.5",
"babel-loader": "^8.0.0",
"body-parser": "^1.18.3",
"feathers-memory": "^2.2.0",
"grunt": "^1.0.3",
"grunt-cli": "^1.3.1",
"grunt-saucelabs": "^9.0.0",
"jsdom": "8.1.0",
"mocha": "^5.2.0",
"node-fetch": "^2.2.0",
"parallel-webpack": "^2.3.0",
"request": "^2.88.0",
"semistandard": "^12.0.1",
"shx": "^0.3.2",
"socket.io-client": "^2.1.1",
"superagent": "^4.0.0-beta.5",
"uglifyjs-webpack-plugin": "^2.0.0",
"webpack": "^4.19.0",
"webpack-merge": "^4.1.4",
"ws": "^6.0.0"
}
}