-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
125 lines (125 loc) · 3.6 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "netsix-vue",
"version": "0.0.0",
"description": "An electron-vue project",
"scripts": {
"build": "npm run pack && build",
"build:dir": "npm run pack && build --dir",
"dev": "node tasks/runner.js",
"e2e": "npm run pack && mocha test/e2e",
"lint": "eslint --ext .js,.vue -f ./node_modules/eslint-friendly-formatter app test",
"lint:fix": "eslint --ext .js,.vue -f ./node_modules/eslint-friendly-formatter --fix app test",
"pack": "npm run pack:main && npm run pack:renderer",
"pack:main": "cross-env NODE_ENV=production webpack -p --progress --colors --config webpack.main.config.js",
"pack:renderer": "cross-env NODE_ENV=production webpack -p --progress --colors --config webpack.renderer.config.js",
"test": "npm run unit && npm run e2e",
"unit": "cross-env BABEL_ENV=testing-unit karma start test/unit/karma.conf.js",
"postinstall": "npm run lint:fix && cd app && npm install"
},
"build": {
"productName": "Netsix",
"appId": "org.simulatedgreg.electron-vue",
"category": "public.app-category.tools",
"dmg": {
"contents": [
{
"x": 410,
"y": 150,
"type": "link",
"path": "/Applications"
},
{
"x": 130,
"y": 150,
"type": "file"
}
]
},
"files": [
"dist/",
"node_modules/",
"package.json"
],
"extraResources": [
"app/dist/bin/*.exe"
],
"mac": {
"icon": "app/icons/icon.icns"
},
"win": {
"icon": "app/icons/icon.ico"
},
"linux": {
"target": [
"AppImage"
]
},
"publish": [
{
"provider": "github",
"owner": "mmorainville",
"repo": "netsix"
}
]
},
"author": "Greg Holguin <[email protected]>",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.8.0",
"babel-eslint": "^7.0.0",
"babel-loader": "^6.2.4",
"babel-plugin-istanbul": "^3.1.2",
"babel-plugin-transform-runtime": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.18.0",
"babel-runtime": "^6.6.1",
"chai": "^3.5.0",
"cross-env": "^3.1.4",
"css-loader": "^0.26.1",
"del": "^2.2.1",
"devtron": "^1.1.0",
"electron": "^1.3.1",
"electron-builder": "^11.4.4",
"electron-debug": "^1.1.0",
"electron-devtools-installer": "^2.0.1",
"electron-rebuild": "^1.1.3",
"eslint": "^3.13.1",
"eslint-config-standard": "^6.2.1",
"eslint-friendly-formatter": "^2.0.5",
"eslint-loader": "^1.3.0",
"eslint-plugin-html": "^2.0.0",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^2.0.1",
"extract-text-webpack-plugin": "^2.0.0-beta.4",
"file-loader": "^0.9.0",
"html-webpack-plugin": "^2.16.1",
"inject-loader": "^2.0.1",
"json-loader": "^0.5.4",
"karma": "^1.3.0",
"karma-chai": "^0.1.0",
"karma-coverage": "^1.1.1",
"karma-electron": "^5.1.1",
"karma-mocha": "^1.2.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.26",
"karma-webpack": "^2.0.1",
"mocha": "^3.0.2",
"node-sass": "^4.5.0",
"require-dir": "^0.3.0",
"sass-loader": "^6.0.3",
"spectron": "^3.4.0",
"style-loader": "^0.13.1",
"tree-kill": "^1.1.0",
"url-loader": "^0.5.7",
"vue-hot-reload-api": "^2.0.7",
"vue-html-loader": "^1.2.2",
"vue-loader": "^10.0.2",
"vue-style-loader": "^1.0.0",
"vue-template-compiler": "^2.1.10",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.3.0",
"webpack-merge": "^2.4.0"
},
"dependencies": {}
}