-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
109 lines (109 loc) · 2.88 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
{
"name": "vue-syncers-feathers",
"version": "0.4.1",
"description": "Synchronises feathers services with vue objects, updated in real time",
"license": "MIT",
"main": "dist/vue-syncers-feathers.common.js",
"jsnext:main": "src/index.js",
"files": [
"dist",
"src"
],
"scripts": {
"build": "npm-run-all clean:dist build:*",
"build:commonjs": "rollup -c",
"build:esm": "rollup -c",
"ci:test": "npm-run-all lint coverage",
"clean": "npm-run-all clean:*",
"clean:dist": "rimraf dist/*.*",
"clean:coverage": "rimraf coverage/**/*",
"coverage": "cross-env NODE_ENV=test nyc npm run unit",
"coverage-html": "npm-run-all clean:coverage coverage && nyc report --reporter=html",
"lint": "xo",
"prepublish": "npm run build",
"serve-example": "node example/server.js",
"test": "npm-run-all lint unit",
"unit": "ava"
},
"keywords": [
"vue",
"vuejs",
"feathers",
"feathersjs"
],
"author": "t2t2 <taavot@gmail.com>",
"repository": "t2t2/vue-syncers-feathers",
"peerDependencies": {
"feathers-commons": "^0.8.7",
"feathers-query-filters": "^2.1.1"
},
"devDependencies": {
"ava": "^0.21.0",
"babel-core": "^6.25.0",
"babel-loader": "^7.0.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-external-helpers": "^6.18.0",
"babel-plugin-istanbul": "^4.1.4",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-env": "^1.3.2",
"babel-preset-latest": "^6.24.1",
"babel-register": "^6.24.1",
"babel-runtime": "^6.20.0",
"body-parser": "^1.17.2",
"country-data": "^0.0.31",
"cross-env": "^5.0.1",
"css-loader": "^0.28.0",
"feathers": "^2.1.4",
"feathers-commons": "^0.8.7",
"feathers-memory": "^1.0.1",
"feathers-query-filters": "^2.1.1",
"feathers-rest": "^1.8.0",
"feathers-socket-commons": "^2.3.1",
"feathers-socketio": "^2.0.0",
"json-loader": "^0.5.4",
"lodash": "^4.17.4",
"mock-socket": "^6.1.0",
"npm-run-all": "^4.0.0",
"nyc": "^11.0.3",
"rimraf": "^2.5.4",
"rollup": "^0.47.0",
"rollup-plugin-babel": "^3.0.0",
"socket.io-client": "^2.0.3",
"uberproto": "^1.2.0",
"vue": "^2.3.4",
"vue-hot-reload-api": "^2.1.0",
"vue-html-loader": "^1.2.3",
"vue-loader": "^13.0.0",
"vue-style-loader": "^3.0.0",
"vue-template-compiler": "^2.3.4",
"webpack": "^3.1.0",
"webpack-dev-middleware": "^1.11.0",
"webpack-hot-middleware": "^2.18.2",
"xo": "^0.18.2"
},
"ava": {
"fail-fast": true,
"files": "test/**/*.test.js",
"require": [
"./test/helpers/global-require"
]
},
"nyc": {
"require": [
"babel-register"
],
"sourceMap": false,
"instrument": false
},
"xo": {
"envs": [
"node",
"browser"
],
"ignores": [
"dist/*.js",
"example/*.build.js"
],
"semicolon": false
}
}