forked from feathersjs-ecosystem/feathers-vuex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 2.98 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
105
106
107
{
"name": "feathers-vuex",
"description": "Implement Vuex as a Feathers Client plugin",
"version": "0.4.2",
"homepage": "https://github.com/feathersjs/feathers-vuex",
"main": "lib/",
"keywords": [
"feathers",
"feathers-plugin"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/feathersjs/feathers-vuex.git"
},
"author": {
"name": "Feathers contributors",
"email": "[email protected]",
"url": "https://feathersjs.com"
},
"contributors": [],
"bugs": {
"url": "https://github.com/feathersjs/feathers-vuex/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": "shx rm -rf lib/ && babel -d lib/ src/",
"watch": "shx rm -rf lib/ && babel --watch -d lib/ src/",
"lint": "standard src/**/*.js test/**/*.js --fix",
"coverage": "istanbul cover node_modules/mocha/bin/_mocha -- --opts mocha.opts",
"test": "npm run lint && npm run test-node && npm run testee",
"test-node": "mocha --opts mocha.opts",
"testee": "testee test/index.html --browsers firefox",
"start": "npm run compile && node example/app"
},
"standard": {
"sourceType": "module",
"env": [
"mocha"
]
},
"steal": {
"map": {
"assert": "chai/chai"
},
"meta": {
"chai/chai": {
"format": "global",
"exports": "chai.assert"
}
},
"plugins": [
"chai"
]
},
"directories": {
"lib": "lib"
},
"dependencies": {
"clone": "^2.1.1",
"debug": "^2.6.3",
"deep-assign": "^2.0.0",
"feathers-commons": "^0.8.7",
"feathers-errors": "^2.6.3",
"feathers-query-filters": "^2.1.2",
"lodash.isobject": "^3.0.2",
"rubberduck": "^1.1.1",
"serialize-error": "^2.1.0"
},
"devDependencies": {
"axios": "^0.16.1",
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"body-parser": "^1.17.1",
"chai": "^3.5.0",
"feathers": "^2.1.1",
"feathers-authentication": "^1.2.2",
"feathers-authentication-client": "^0.3.1",
"feathers-authentication-jwt": "^0.3.1",
"feathers-hooks": "^2.0.0",
"feathers-memory": "^1.1.0",
"feathers-rest": "^1.7.2",
"feathers-socketio": "^1.5.2",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^3.2.0",
"shx": "^0.2.2",
"socket.io-client": "^1.7.3",
"standard": "^10.0.2",
"steal": "^1.4.2",
"steal-mocha": "^1.0.0",
"testee": "^0.4.0",
"vue": "^2.2.6",
"vuex": "^2.3.0"
}
}