-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
64 lines (64 loc) · 1.73 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
{
"name": "hal-json-vuex",
"version": "1.2.2",
"description": "Use a HAL JSON API with Vuex",
"main": "dist/bundle.js",
"scripts": {
"build": "cross-env NODE_ENV=production webpack",
"clean": "cross-env rimraf dist coverage lib",
"coverage": "cross-env npm run build && jest --coverage",
"lint": "cross-env eslint src --ext .js",
"test": "cross-env npm run build && jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ecamp/hal-json-vuex.git"
},
"keywords": [
"HAL",
"JSON",
"API",
"HATEOAS",
"Vuex",
"Vue"
],
"author": "Carlo Beltrame",
"license": "MIT",
"bugs": {
"url": "https://github.com/ecamp/hal-json-vuex/issues"
},
"homepage": "https://github.com/ecamp/hal-json-vuex#readme",
"dependencies": {
"hal-json-normalizer": "^4.0.0",
"url-template": "^2.0.8"
},
"devDependencies": {
"@babel/plugin-transform-regenerator": "7.25.9",
"@babel/plugin-transform-runtime": "7.26.8",
"@babel/preset-env": "7.26.8",
"@vue/eslint-config-standard": "6.1.0",
"@vue/test-utils": "1.3.6",
"axios": "0.29.0",
"axios-mock-adapter": "1.22.0",
"babel-eslint": "10.1.0",
"babel-loader": "8.4.1",
"cross-env": "7.0.3",
"eslint": "7.32.0",
"eslint-loader": "4.0.2",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.3.1",
"eslint-plugin-standard": "4.1.0",
"eslint-plugin-vue": "7.20.0",
"jest": "26.6.3",
"lodash": "4.17.21",
"rimraf": "3.0.2",
"vue": "2.7.16",
"vue-axios": "3.2.5",
"vue-template-compiler": "2.7.16",
"vuex": "3.6.2",
"webpack": "5.98.0",
"webpack-cli": "4.10.0",
"webpack-node-externals": "3.0.0"
}
}