-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
53 lines (53 loc) · 1.31 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
{
"name": "vuex-coolstory",
"version": "0.3.0",
"description": "Vuex plugin for redux-saga",
"author": "Nikita Lvov <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/niklv/vuex-coolstory"
},
"homepage": "https://github.com/niklv/vuex-coolstory",
"bugs": {
"url": "https://github.com/niklv/vuex-coolstory",
"email": "[email protected]"
},
"files": [
"index.js"
],
"main": "index.js",
"scripts": {
"lint": "eslint .",
"lint-staged": "lint-staged",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md"
},
"pre-commit": "lint-staged",
"keywords": [
"vuex",
"plugin",
"redux-saga",
"saga"
],
"license": "ISC",
"peerDependencies": {
"redux-saga": "^1.*.*"
},
"devDependencies": {
"eslint": "^7.23.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-json": "^2.1.2",
"html-webpack-plugin": "^5.3.1",
"lint-staged": "^10.5.4",
"pre-commit": "^1.2.2",
"prettier": "^2.2.1",
"redux-saga": "^1.0.2",
"vue": "^2.6.12",
"vue-loader": "^15.9.6",
"vue-template-compiler": "^2.6.12",
"vuex": "^3.6.2",
"webpack": "^5.30.0",
"webpack-cli": "^4.6.0"
}
}