-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
81 lines (81 loc) · 1.92 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "j",
"version": "2.0.1",
"main": "index.js",
"repository": "git@github.com:joehecn/j.git",
"author": "joehecn <leanbrown@live.cn>",
"license": "MIT",
"scripts": {
"dev": "electron-webpack dev",
"test": "jest",
"cover": "jest --coverage",
"build": "electron-webpack && electron-builder --mac --win"
},
"build": {
"mac": {
"icon": "build/icons/icon.icns"
},
"win": {
"icon": "build/icons/icon.ico"
},
"linux": {
"icon": "build/icons"
}
},
"electronWebpack": {
"main": {
"webpackConfig": "webpack.main.additions.js"
},
"renderer": {
"webpackConfig": "webpack.renderer.additions.js"
}
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"vue"
],
"transform": {
"^.+\\.js$": "babel-jest",
".*\\.(vue)$": "vue-jest"
},
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/src/renderer/$1"
},
"testURL": "http://localhost"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@vue/test-utils": "^1.0.0-beta.25",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.4",
"coveralls": "^3.0.2",
"electron": "^3.0.6",
"electron-baidu-tongji": "^1.0.2",
"electron-builder": "^20.29.0",
"electron-webpack": "^2.3.1",
"electron-webpack-eslint": "^3.0.0",
"electron-webpack-vue": "^2.2.1",
"element-ui": "^2.4.9",
"eslint-plugin-html": "^4.0.6",
"jest": "^23.6.0",
"localforage": "^1.7.3",
"regenerator-runtime": "^0.12.1",
"spark-md5": "^3.0.0",
"superagent": "^3.8.3",
"vue": "^2.5.17",
"vue-jest": "^3.0.0",
"vue-router": "^3.0.1",
"vuex": "^3.0.1",
"webpack": "4.23.1",
"worker-loader": "^2.0.0",
"xml2js": "^0.4.19"
},
"dependencies": {
"source-map-support": "^0.5.9"
}
}