|
1 | 1 | { |
| 2 | + "name": "jsonapi-vuex", |
| 3 | + "version": "5.9.0", |
| 4 | + "description": "Access restructured JSONAPI data from a Vuex Store.", |
| 5 | + "author": "Matthew Richardson <M.Richardson@ed.ac.uk>", |
| 6 | + "scripts": { |
| 7 | + "lint": "eslint .", |
| 8 | + "docs": "rm -rf docs/; jsdoc -c jsdoc.json", |
| 9 | + "e2e": "concurrently --success first --kill-others \"npm:fakeapiserver\" \"vue-cli-service test:e2e --env chrome --headless\"", |
| 10 | + "fakeapiserver": "node examples/fake-json-api-server.js", |
| 11 | + "test": "npm run unit -- --single-run && npm run e2e", |
| 12 | + "testapp": "concurrently --kill-others \"npm:fakeapiserver\" \"vue-cli-service serve\"", |
| 13 | + "unit": "karma start" |
| 14 | + }, |
| 15 | + "main": "src/jsonapi-vuex.js", |
| 16 | + "files": [ |
| 17 | + "src/" |
| 18 | + ], |
| 19 | + "dependencies": { |
| 20 | + "jsonpath-plus": "^6.0.1", |
| 21 | + "lodash.get": "^4.4.2", |
| 22 | + "lodash.isequal": "^4.5.0", |
| 23 | + "lodash.merge": "^4.6.2", |
| 24 | + "lodash.set": "^4.3.2" |
| 25 | + }, |
2 | 26 | "devDependencies": { |
3 | 27 | "@babel/core": "^7.15.0", |
4 | 28 | "@babel/preset-env": "^7.15.0", |
5 | | - "@vue/cli-plugin-babel": "^4.5.17", |
6 | | - "@vue/cli-plugin-e2e-nightwatch": "^4.5.17", |
7 | | - "@vue/cli-plugin-eslint": "^4.5.17", |
8 | | - "@vue/cli-plugin-vuex": "^4.5.3", |
9 | | - "@vue/cli-service": "^4.5.17", |
10 | | - "@vue/compiler-sfc": "^3.2.1", |
| 29 | + "@vue/cli-plugin-babel": "~5.0.8", |
| 30 | + "@vue/cli-plugin-e2e-nightwatch": "~5.0.8", |
| 31 | + "@vue/cli-plugin-eslint": "~5.0.8", |
| 32 | + "@vue/cli-plugin-vuex": "~5.0.8", |
| 33 | + "@vue/cli-service": "~5.0.8", |
11 | 34 | "@vue/test-utils": "^1.2.2", |
12 | 35 | "axios": "^0.21.1", |
13 | 36 | "axios-mock-adapter": "^1.19.0", |
|
41 | 64 | "lint-staged": "^11.1.2", |
42 | 65 | "mocha": "^9.0.3", |
43 | 66 | "mocha-eslint": "^7.0.0", |
44 | | - "nightwatch": "^1.7.13", |
| 67 | + "nightwatch": "^2.3.0", |
45 | 68 | "prettier": "^2.3.2", |
46 | | - "sinon": "^11.1.2", |
| 69 | + "sinon": "^14.0.0", |
47 | 70 | "sinon-chai": "^3.7.0", |
48 | | - "vue": "^3.0.0", |
| 71 | + "vue": "^3.2.37", |
49 | 72 | "vuex": "^4.0.0" |
50 | 73 | }, |
51 | | - "name": "jsonapi-vuex", |
52 | | - "version": "5.9.0", |
53 | | - "description": "Access restructured JSONAPI data from a Vuex Store.", |
54 | | - "keywords": [ |
55 | | - "vue", |
56 | | - "vuex", |
57 | | - "jsonapi", |
58 | | - "rest", |
59 | | - "normalize", |
60 | | - "jsonpath" |
61 | | - ], |
62 | | - "main": "src/jsonapi-vuex.js", |
63 | | - "files": [ |
64 | | - "src/" |
65 | | - ], |
66 | | - "author": "Matthew Richardson <M.Richardson@ed.ac.uk>", |
67 | | - "homepage": "https://github.com/mrichar1/jsonapi-vuex.git", |
68 | | - "license": "AGPL-3.0-or-later", |
69 | | - "repository": { |
70 | | - "type": "git", |
71 | | - "url": "https://github.com/mrichar1/jsonapi-vuex.git" |
72 | | - }, |
73 | | - "bugs": { |
74 | | - "url": "https://github.com/mrichar1/jsonapi-vuex/issues" |
75 | | - }, |
76 | | - "scripts": { |
77 | | - "docs": "rm -rf docs/; jsdoc -c jsdoc.json", |
78 | | - "test": "npm run unit -- --single-run && npm run e2e", |
79 | | - "unit": "karma start", |
80 | | - "lint": "eslint .", |
81 | | - "e2e": "concurrently --success first --kill-others \"npm:fakeapiserver\" \"vue-cli-service test:e2e --env chrome --headless\"", |
82 | | - "testapp": "concurrently --kill-others \"npm:fakeapiserver\" \"vue-cli-service serve\"", |
83 | | - "fakeapiserver": "node examples/fake-json-api-server.js" |
84 | | - }, |
85 | | - "dependencies": { |
86 | | - "jsonpath-plus": "^6.0.1", |
87 | | - "lodash.get": "^4.4.2", |
88 | | - "lodash.isequal": "^4.5.0", |
89 | | - "lodash.merge": "^4.6.2", |
90 | | - "lodash.set": "^4.3.2" |
91 | | - }, |
92 | 74 | "peerDependencies": { |
93 | 75 | "vue": "^3.0.11", |
94 | 76 | "vuex": "^4.0.0" |
95 | 77 | }, |
| 78 | + "bugs": { |
| 79 | + "url": "https://github.com/mrichar1/jsonapi-vuex/issues" |
| 80 | + }, |
| 81 | + "homepage": "https://github.com/mrichar1/jsonapi-vuex.git", |
96 | 82 | "husky": { |
97 | 83 | "hooks": { |
98 | 84 | "pre-commit": "lint-staged" |
99 | 85 | } |
100 | 86 | }, |
| 87 | + "keywords": [ |
| 88 | + "vue", |
| 89 | + "vuex", |
| 90 | + "jsonapi", |
| 91 | + "rest", |
| 92 | + "normalize", |
| 93 | + "jsonpath" |
| 94 | + ], |
| 95 | + "license": "AGPL-3.0-or-later", |
101 | 96 | "lint-staged": { |
102 | 97 | "*.{js,json,css,md}": [ |
103 | 98 | "prettier --write", |
104 | 99 | "git add" |
105 | 100 | ] |
| 101 | + }, |
| 102 | + "repository": { |
| 103 | + "type": "git", |
| 104 | + "url": "https://github.com/mrichar1/jsonapi-vuex.git" |
106 | 105 | } |
107 | 106 | } |
0 commit comments