-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.54 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
{
"name": "vuex-module-maker",
"version": "1.0.4",
"author": "Simon Msara",
"license": "MIT",
"description": "Reduce the amount of work involved in creating reusable vuex modules, simply define the type and voila! You have a state property, getter and mutation.",
"keywords": [
"vue",
"vuex",
"modules",
"module",
"maker",
"module-maker",
"vuex-module-maker",
"module-generator",
"generator"
],
"homepage": "https://github.com/goomcoom/vuex-module-maker",
"bugs": {
"url": "https://github.com/goomcoom/vuex-module-maker/issues",
"email": "simonmsaraone@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/goomcoom/vuex-module-maker"
},
"main": "dist/ModuleMaker.js",
"module": "dist/ModuleMaker.js",
"typings": "types/index.d.ts",
"files": [
"dist",
"types/index.d.ts"
],
"private": false,
"scripts": {
"prod": "npm run production",
"production": "tsc && npx webpack --config webpack.config.js --mode production",
"dev": "npm run development",
"development": "tsc && npx webpack --config webpack.config.js --mode development",
"test": "jest",
"coverage": "jest --coverage=true"
},
"dependencies": {
"vuex": "^3.5.1"
},
"devDependencies": {
"@types/jest": "^25.2.3",
"axios": "^0.21.1",
"jest": "^25.5.4",
"path": "^0.12.7",
"ts-jest": "^25.5.1",
"ts-loader": "^7.0.5",
"typescript": "^3.9.7",
"vform": "^1.0.1",
"vue": "^2.6.11",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.12"
}
}