forked from feathersjs-ecosystem/feathers-vuex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 3.07 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
108
109
110
{
"name": "feathers-vuex",
"description": "FeathersJS, Vue, and Nuxt for the artisan developer",
"version": "1.0.3",
"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": {
"prepare": "npm run compile",
"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 --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": {
"can-fixture-socket": "^0.7.1",
"debug": "^3.1.0",
"feathers-commons": "^0.8.7",
"feathers-errors": "^2.9.2",
"feathers-query-filters": "^2.1.2",
"jwt-decode": "^2.2.0",
"lodash.clonedeep": "^4.5.0",
"lodash.isobject": "^3.0.2",
"lodash.merge": "^4.6.0",
"lodash.trim": "^4.5.1",
"serialize-error": "^2.1.0"
},
"devDependencies": {
"axios": "^0.16.2",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"body-parser": "^1.18.2",
"chai": "^3.5.0",
"feathers": "^2.2.2",
"feathers-authentication": "^1.2.7",
"feathers-authentication-client": "^0.3.3",
"feathers-authentication-jwt": "^0.3.2",
"feathers-hooks": "^2.1.0",
"feathers-memory": "^1.2.1",
"feathers-rest": "^1.8.0",
"feathers-socketio": "^1.6.0",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^3.5.3",
"shx": "^0.2.2",
"socket.io-client": "^1.7.4",
"standard": "^10.0.3",
"steal": "^1.5.15",
"steal-mocha": "^1.0.0",
"testee": "^0.4.1",
"vue": "^2.4.4",
"vuex": "^2.4.1"
}
}