-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
80 lines (80 loc) · 2.01 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
{
"name": "jsonapi-vuex",
"version": "5.13.2",
"description": "Access restructured JSONAPI data from a Vuex Store.",
"author": "Matthew Richardson <[email protected]>",
"scripts": {
"dev": "concurrently --success first --kill-others \"npm:fakeapiserver\" \"vite dev\"",
"docs": "rm -rf docs/; jsdoc -c jsdoc.json",
"e2e": "playwright test --project 'Google Chrome'",
"fakeapiserver": "node examples/fake-json-api-server.js",
"lint": "eslint .",
"unit": "vitest run --dir tests/unit"
},
"main": "src/jsonapi-vuex.js",
"files": [
"src/"
],
"dependencies": {
"jsonpath-plus": "^10.0.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"@babel/core": "^7.23.3",
"@babel/eslint-parser": "^7.23.3",
"@playwright/test": "^1.39.0",
"@vitejs/plugin-vue": "^4.4.1",
"axios": "^1.6.2",
"axios-mock-adapter": "^1.22.0",
"chai": "^4.3.10",
"concurrently": "^7.6.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-prettier-vue": "^4.2.0",
"eslint-plugin-vue": "^9.9.0",
"eslint-webpack-plugin": "^4.0.0",
"fake-json-api-server": "^1.6.0",
"happy-dom": "^12.10.3",
"jsdoc": "^4.0.2",
"prettier": "^2.8.4",
"sinon": "^17.0.1",
"sinon-chai": "^3.7.0",
"vite": "^4.4.5",
"vitest": "^0.34.6",
"vue": "^3.3.8",
"vuex": "^4.1.0"
},
"peerDependencies": {
"vue": "^3.0.11",
"vuex": "^4.0.0"
},
"bugs": {
"url": "https://github.com/mrichar1/jsonapi-vuex/issues"
},
"homepage": "https://github.com/mrichar1/jsonapi-vuex.git",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"keywords": [
"vue",
"vuex",
"jsonapi",
"rest",
"normalize",
"jsonpath"
],
"license": "AGPL-3.0-or-later",
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "https://github.com/mrichar1/jsonapi-vuex.git"
}
}