forked from feathersjs-ecosystem/client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 3.73 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
104
{
"name": "feathers-client",
"description": "A module that consolidates Feathers client modules for REST (jQuery, Request, Superagent) and Websocket (Socket.io, Primus) connections",
"version": "1.8.0",
"repository": {
"type": "git",
"url": "https://github.com/feathersjs/feathers-client.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/feathersjs/feathers-client/issues"
},
"homepage": "https://github.com/feathersjs/feathers-client",
"keywords": [
"feathers",
"feathers-plugin",
"batch",
"rest",
"api"
],
"author": "Feathers contributors",
"engines": {
"node": ">= 4"
},
"main": "lib/client.js",
"scripts": {
"clean": "rimraf dist/ && mkdir -p dist",
"browserify:test": "browserify test/browser/test.js -t babelify --outfile dist/browser.test.js",
"browserify:dist": "browserify src/client.js -t babelify --standalone feathers --outfile dist/feathers.js",
"browserify:min": "browserify src/client.js -t babelify --standalone feathers | uglifyjs > dist/feathers.min.js",
"browserify": "npm run browserify:dist && npm run browserify:min && npm run browserify:test",
"reinstall": "rm -rf node_modules && npm install",
"add-dist": "npm run clean && npm run browserify:dist && npm run browserify:min && git add dist/ --force && git commit -am \"Updating dist\"",
"prepublish": "npm run compile",
"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:prerelease": "npm run reinstall && npm run add-dist && npm version prerelease && npm run bower && npm publish",
"release:patch": "npm run reinstall && npm run add-dist && npm version patch && npm run bower && npm publish",
"release:minor": "npm run reinstall && npm run add-dist && npm version minor && npm run bower && npm publish",
"release:major": "npm run reinstall && npm run add-dist && npm version major && npm run bower && npm publish",
"compile": "rimraf lib/ && babel -d lib/ src/",
"watch": "babel --watch -d lib/ src/",
"lint": "eslint-if-supported semistandard --fix",
"mocha": "mocha --opts mocha.opts",
"saucelabs": "grunt",
"test": "npm run clean && npm run browserify && npm run lint && npm run coverage",
"ci": "npm test && npm run saucelabs",
"coverage": "istanbul cover node_modules/mocha/bin/_mocha -- --opts mocha.opts"
},
"semistandard": {
"env": [
"mocha"
],
"ignore": [
"/lib",
"/dist"
]
},
"directories": {
"lib": "lib"
},
"browser": {
"babel-polyfill": false
},
"greenkeeper": {
"ignore": "jsdom"
},
"typings": "index.d.ts",
"dependencies": {
"feathers": "2.0.3",
"feathers-authentication": "0.7.12",
"feathers-commons": "^0.8.7",
"feathers-hooks": "1.7.0",
"feathers-primus": "2.0.0",
"feathers-rest": "1.5.2",
"feathers-socketio": "1.4.2"
},
"devDependencies": {
"babel-cli": "^6.1.4",
"babel-core": "^6.1.4",
"babel-plugin-add-module-exports": "^0.2.0",
"babel-preset-es2015": "^6.1.4",
"babelify": "^7.2.0",
"body-parser": "^1.12.4",
"browserify": "^13.0.0",
"eslint-if-supported": "^1.0.1",
"feathers-memory": "^1.0.0",
"grunt": "^1.0.1",
"grunt-cli": "^1.2.0",
"grunt-saucelabs": "^9.0.0",
"istanbul": "^1.1.0-alpha.1",
"jsdom": "8.1.0",
"mocha": "^3.0.0",
"node-fetch": "^1.3.3",
"request": "^2.56.0",
"rimraf": "^2.5.4",
"semistandard": "^9.1.0",
"socket.io-client": "^1.7.2",
"superagent": "^3.1.0",
"uglifyjs": "^2.4.10",
"ws": "^1.1.1"
}
}