From 1360930f0acafaab91ec65eeb3e646c6c177fdcf Mon Sep 17 00:00:00 2001 From: Joelchu Date: Fri, 23 Aug 2019 09:41:15 +0800 Subject: [PATCH 1/2] the same unexpecte json error persist --- packages/@jsonql/vue/package.json | 25 +++++++++---------------- packages/vue/package.json | 10 ++++++++++ 2 files changed, 19 insertions(+), 16 deletions(-) create mode 100644 packages/vue/package.json diff --git a/packages/@jsonql/vue/package.json b/packages/@jsonql/vue/package.json index 76d1f71f..2e906044 100644 --- a/packages/@jsonql/vue/package.json +++ b/packages/@jsonql/vue/package.json @@ -1,17 +1,10 @@ { - "name": "@jsonql/vue", - "version": "0.0.1", - "description": "Collection of jsonql modules for Vue", - "main": "index.js", - "scripts": { - "test": "ava" - }, - "keywords": [ - "jsonql", - "vue", - "plugin", - "vuex" - ], - "author": "Joel Chu ", - "license": "ISC" -} + "name": "vue", + "version": "0.1.0", + "private": true, + "devDependencies": { + "@vue/cli-plugin-babel": "^3.11.0", + "@vue/cli-plugin-eslint": "^3.11.0", + "@vue/cli-service": "^3.11.0" + } +} \ No newline at end of file diff --git a/packages/vue/package.json b/packages/vue/package.json new file mode 100644 index 00000000..2e906044 --- /dev/null +++ b/packages/vue/package.json @@ -0,0 +1,10 @@ +{ + "name": "vue", + "version": "0.1.0", + "private": true, + "devDependencies": { + "@vue/cli-plugin-babel": "^3.11.0", + "@vue/cli-plugin-eslint": "^3.11.0", + "@vue/cli-service": "^3.11.0" + } +} \ No newline at end of file -- Gitee From 7e6aa6c8f3826d3da4f2d4965af15e825b3cd90c Mon Sep 17 00:00:00 2001 From: Joelchu Date: Sun, 25 Aug 2019 02:53:52 +0800 Subject: [PATCH 2/2] fix the package.json --- packages/@jsonql/koa/package.json | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/packages/@jsonql/koa/package.json b/packages/@jsonql/koa/package.json index 436f7cc6..62cf9691 100644 --- a/packages/@jsonql/koa/package.json +++ b/packages/@jsonql/koa/package.json @@ -19,5 +19,26 @@ "license": "ISC", "devDependencies": { "ava": "^2.3.0" + }, + "repository": { + "type": "git", + "url": "git+ssh://git@gitee.com:to1source/jsonql.git" + }, + "bugs": { + "url": "https://gitee.com/to1source/jsonql/issues" + }, + "homepage": "https://gitee.com/to1source/jsonql#readme", + "ava": { + "files": [ + "tests/*.test.js", + "!tests/helpers/*.*", + "!tests/fixtures/*.*" + ], + "cache": true, + "concurrency": 5, + "failFast": true, + "failWithoutAssertions": false, + "tap": false, + "compileEnhancements": false } } -- Gitee