-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.59 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
{
"name": "electron-vuex",
"version": "1.0.0",
"description": "Share vuex state between main and renderer",
"main": "index.js",
"scripts": {
"prebuild": "rm -rf dist && mkdir dist",
"build": "babel src -d dist --env-name production",
"watch": "babel src -d dist --watch",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "npm run lint && jest && bundlesize"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.js"
]
},
"bundlesize": [
{
"path": "./dist/**/*.js",
"maxSize": "2 kB"
}
],
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"babel-core": "^7.0.0-0",
"babel-eslint": "^9.0.0",
"babel-jest": "^26.6.3",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-minify": "^0.4.3",
"bundlesize": "^0.17.0",
"electron": "^9.4.0",
"eslint": "^5.5.0",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-jest": "^21.22.0",
"eslint-plugin-prettier": "^2.6.2",
"jest": "^26.6.3",
"prettier": "^1.14.2",
"vue": "^2.5.17",
"vuex": "^3.0.1"
},
"dependencies": {
"deepmerge": "^2.1.1",
"electron-store": "^2.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ingameltd/electron-vuex.git"
},
"keywords": [
"vuex",
"electron",
"shared"
],
"author": "Kasun Vithanage",
"license": "MIT",
"bugs": {
"url": "https://github.com/ingameltd/electron-vuex/issues"
},
"homepage": "https://github.com/ingameltd/electron-vuex#readme"
}