This repository has been archived by the owner on Mar 30, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.24 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
{
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"@vue/cli-plugin-babel": "^3.1.1",
"@vue/cli-plugin-e2e-nightwatch": "^3.1.1",
"@vue/cli-plugin-eslint": "^3.1.4",
"@vue/cli-service": "^3.1.3",
"axios": "^0.18.0",
"axios-mock-adapter": "^1.15.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"babel-plugin-istanbul": "^5.0.1",
"babel-polyfill": "^6.26.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"concurrently": "^4.0.1",
"eslint": "^5.6.1",
"eslint-loader": "^2.1.1",
"eslint-plugin-vue": "^4.7.1",
"fake-json-api-server": "^1.6.0",
"geckodriver": "^1.14.1",
"karma": "^3.0.0",
"karma-chai": "^0.1.0",
"karma-coverage": "^1.1.2",
"karma-firefox-launcher": "^1.1.0",
"karma-mocha": "^1.3.0",
"karma-sinon": "^1.0.5",
"karma-verbose-reporter": "^0.0.6",
"karma-webpack": "^4.0.0-rc.2",
"mocha": "^5.2.0",
"mocha-eslint": "^4.1.0",
"sinon": "^6.3.5",
"sinon-chai": "^3.2.0",
"vue-template-compiler": "^2.5.17",
"webpack": "^4.20.2"
},
"name": "jsonapi-vuexn",
"version": "0.0.15",
"description": "Access restructured JSONAPI data from a Vuex Store.",
"keywords": [
"vue",
"vuex",
"jsonapi",
"rest",
"normalize",
"jsonpath"
],
"main": "index.js",
"files": [
"index.js",
"src/"
],
"author": "André Carneiro <[email protected]>",
"homepage": "https://github.com/r4mmer/jsonapi-vuexn.git",
"license": "AGPL-3.0-or-later",
"repository": {
"type": "git",
"url": "https://github.com/r4mmer/vuex-jsonapi-vuexn.git"
},
"bugs": {
"url": "https://github.com/r4mmer/jsonapi-vuexn/issues"
},
"scripts": {
"test": "npm run unit -- --single-run && npm run e2e",
"unit": "karma start",
"e2e": "concurrently --success first --kill-others \"npm:fakeapiserver\" \"vue-cli-service test:e2e --env FirefoxHeadless\"",
"testapp": "concurrently --kill-others \"npm:fakeapiserver\" \"vue-cli-service serve\"",
"fakeapiserver": "node examples/fake-json-api-server.js"
},
"dependencies": {
"jsonpath": "^1.0.0",
"lodash.clone": "^4.5.0",
"lodash.merge": "^4.6.1",
"vue": "^2.5.17",
"vuex": "^3.0.1"
}
}