forked from mrichar1/jsonapi-vuex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 2.89 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
{
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"@vue/cli-plugin-babel": "^4.1.2",
"@vue/cli-plugin-e2e-nightwatch": "^4.1.2",
"@vue/cli-plugin-eslint": "^4.1.2",
"@vue/cli-service": "^4.1.2",
"axios": "^0.19.0",
"axios-mock-adapter": "^1.15.0",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.4",
"babel-plugin-istanbul": "^6.0.0",
"babel-polyfill": "^6.26.0",
"better-docs": "^1.4.7",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chromedriver": "^79.0.0",
"concurrently": "^5.0.2",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-loader": "^3.0.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-vue": "^6.1.2",
"fake-json-api-server": "^1.6.0",
"geckodriver": "^1.19.1",
"husky": "^3.1.0",
"jsdoc": "^3.6.3",
"karma": "^4.3.0",
"karma-chai": "^0.1.0",
"karma-coverage": "^2.0.1",
"karma-firefox-launcher": "^1.2.0",
"karma-mocha": "^1.3.0",
"karma-sinon": "^1.0.5",
"karma-verbose-reporter": "^0.0.6",
"karma-webpack": "^4.0.0-rc.2",
"lint-staged": "^9.5.0",
"mocha": "^7.0.0",
"mocha-eslint": "^6.0.0",
"nightwatch": "^1.3.2",
"prettier": "^1.16.4",
"sinon": "^8.0.2",
"sinon-chai": "^3.4.0",
"taffydb": "^2.7.3",
"vue": "^2.6.11",
"vue-template-compiler": "^2.6.11",
"vuex": "^3.0.1",
"webpack": "^4.41.5"
},
"name": "jsonapi-vuex",
"version": "3.2.3",
"description": "Access restructured JSONAPI data from a Vuex Store.",
"keywords": [
"vue",
"vuex",
"jsonapi",
"rest",
"normalize",
"jsonpath"
],
"main": "index.js",
"files": [
"index.js",
"src/"
],
"author": "Matthew Richardson <[email protected]>",
"homepage": "https://github.com/mrichar1/jsonapi-vuex.git",
"license": "AGPL-3.0-or-later",
"repository": {
"type": "git",
"url": "https://github.com/mrichar1/jsonapi-vuex.git"
},
"bugs": {
"url": "https://github.com/mrichar1/jsonapi-vuex/issues"
},
"scripts": {
"docs": "rm -rf docs/; jsdoc -c jsdoc.json",
"test": "npm run unit -- --single-run && npm run e2e",
"unit": "karma start",
"lint": "eslint .",
"e2e": "concurrently --success first --kill-others \"npm:fakeapiserver\" \"vue-cli-service test:e2e --env chrome --headless\"",
"testapp": "concurrently --kill-others \"npm:fakeapiserver\" \"vue-cli-service serve\"",
"fakeapiserver": "node examples/fake-json-api-server.js"
},
"dependencies": {
"jsonpath": "^1.0.0",
"lodash.get": "^4.4.2",
"lodash.isequal": "^4.5.0",
"lodash.merge": "^4.6.2",
"lodash.set": "^4.3.2"
},
"peerDependencies": {
"vue": "^2.5.17",
"vuex": "^3.0.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
}
}