-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
98 lines (98 loc) · 2.9 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
{
"name": "vue-desktop-basic",
"version": "1.1.0",
"description": "Boilerplate for a Vue based Desktop App",
"keywords": [
"vue",
"boilerplate",
"desktop"
],
"author": "TheJaredWilcurt@users.noreply.github.com",
"license": "MIT",
"repository": "https://github.com/TheJaredWilcurt/vue-desktop-basic",
"main": "index.html",
"scripts": {
"start": "nw .",
"build": "build --concurrent --tasks win-x86,linux-x86,linux-x64,mac-x64 --mirror https://dl.nwjs.io/ .",
"lint": "eslint --config=.eslintrc.js src/**/*.js src/**/*.vue",
"fix": "eslint --fix --config=.eslintrc.js src/**/*.js src/**/*.vue",
"sass": "node-sass -w -i -o=src/css --output-style=expanded --error-bell ./src/sass",
"sasslint": "sass-lint -c .sass-lint.yml -v -f table",
"sassfix": "sass-lint-auto-fix -c .sass-lint.yml",
"validate": "npm run lint && npm run sasslint"
},
"window": {
"width": 800,
"height": 500,
"icon": "assets/icon.png"
},
"chromium-args": "--load-extension='./node_modules/nw-vue-devtools-prebuilt/extension'",
"dependencies": {
"http-vue-loader": "1.x.x",
"vue": "2.x.x",
"vue-router": "3.x.x",
"vuex": "3.x.x"
},
"devDepComments": {
"babel-eslint": "Allows linting of ES6+",
"eslint": "Linting .js and .vue files",
"eslint-plugin-jest": "Linter is aware of Jest globals",
"eslint-plugin-vue": "Linting of Vue Templates",
"node-sass": "Process .sass and .scss to .css",
"nw": "Latest NW.js SDK version",
"nw-vue-devtools": "Downloads latest Vue DevTools, modifies it, does a build so it works with NW.js",
"nwjs-builder-phoenix": "Automates doing dist builds of your desktop app",
"nwjs-types": "Gives VSCode intellisense for nw.whatever",
"sass-lint": "Lints your Sass Files",
"sass-lint-auto-fix": "Attempts to auto-fix Sass linting problems",
"tjw-sasslint-rules": "A very strict ruleset for Sass linting"
},
"devDependencies": {
"babel-eslint": "8.x.x",
"eslint": "4.x.x",
"eslint-plugin-jest": "^22.4.1",
"eslint-plugin-vue": "4.x.x",
"node-sass": "4.x.x",
"nw": "sdk",
"nw-vue-devtools-prebuilt": "0.x.x",
"nwjs-builder-phoenix": "1.x.x",
"nwjs-types": "^1.0.0",
"sass-lint": "1.x.x",
"sass-lint-auto-fix": "0.x.x",
"tjw-sasslint-rules": "2.x.x"
},
"build": {
"nwVersion": "latest",
"nwFlavor": "normal",
"targets": [
"zip",
"nsis7z"
],
"excludes": [
"package-lock.json",
"assets/*",
"src/sass/*"
],
"strippedProperties": [
"chromium-args",
"scripts",
"devDependencies",
"build"
],
"win": {
"icon": "assets/icon.ico"
},
"mac": {
"icon": "assets/icon.icns"
},
"nsis": {
"icon": "assets/icon.ico",
"unIcon": "assets/icon.ico",
"languages": [
"English"
],
"diffUpdaters": false,
"hashCalculation": true
}
}
}