This repository has been archived by the owner on Apr 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
60 lines (60 loc) · 1.79 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
{
"name": "vuex-generic-mutations",
"version": "1.1.0",
"description": "A Vuex plugin to enable generic mutations in all modules",
"main": "index.js",
"scripts": {
"build": "webpack --mode production",
"test": "jest --color --coverage",
"test:watch": "jest --watch",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"release": "standard-version"
},
"author": "Hugo Azevedo <hugo@stilingue.com.br>",
"contributors": [
"Leonardo Bombonado <leo@stilingue.com.br>",
"Danniel Hugo <danniel@stilingue.com.br>"
],
"repository": {
"type": "git",
"url": "https://github.com/stilingue-inteligencia-artificial/vuex-generic-mutations"
},
"license": "GNU General Public License v3.0",
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/plugin-transform-modules-commonjs": "^7.4.3",
"@babel/plugin-transform-runtime": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/runtime": "^7.4.3",
"@types/jest": "^24.0.19",
"@typescript-eslint/eslint-plugin": "^1.13.0",
"@typescript-eslint/parser": "^1.13.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.7.1",
"babel-loader": "^8.0.5",
"eslint": "^5.3.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.0",
"jest": "^24.9.0",
"prettier": "^1.16.4",
"standard-version": "^6.0.1",
"ts-jest": "^24.1.0",
"ts-loader": "^6.0.4",
"typescript": "^3.5.3",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.6"
},
"dependencies": {
"@babel/polyfill": "^7.4.4",
"@types/lodash.set": "^4.3.6",
"lodash.set": "^4.3.2",
"lodash.omit": "latest",
"lodash.has": "latest"
},
"peerDependencies": {
"vuex": "^3.1.1"
}
}