This repository has been archived by the owner on Jan 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
137 lines (137 loc) · 4 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
126
127
128
129
130
131
132
133
134
135
136
137
{
"name": "airforsteam",
"version": "2.1.0",
"description": "An unofficial Air-for-Steam CLI with interactive configuration and updating of the Air-for-Steam skin",
"homepage": "https://github.com/nysos3/airforsteam-config",
"bugs": {
"url": "https://github.com/nysos3/airforsteam-config/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/nysos3/airforsteam-config.git"
},
"license": "CC-BY-NC-4.0",
"author": {
"name": "Cody Carrell",
"email": "[email protected]",
"url": "https://github.com/nysos3"
},
"files": [
"bin",
"lib",
"lib-es5",
"babel.config.js"
],
"main": "background.js",
"bin": {
"airforsteam": "bin/airforsteam.js"
},
"scripts": {
"prebuild": "npx rimraf dist_electron",
"build": "npm run transpile && npm run electron:build",
"commit": "standard-commit",
"commitlint": "standard-commitlint",
"electron:build": "cross-env NODE_ENV=production vue-cli-service electron:build --win --x64",
"electron:serve": "cross-env NODE_ENV=development vue-cli-service electron:serve",
"lint": "vue-cli-service lint",
"lint:fix": "vue-cli-service lint --fix",
"prepublishOnly": "npm run transpile",
"release": "npx standard-version --release-as patch",
"postrelease": "git push --follow-tags && npm publish",
"release:major": "npx standard-version --release-as major && npm run postrelease",
"release:minor": "npx standard-version --release-as minor && npm run postrelease",
"transpile": "cross-env NODE_ENV=production npx babel lib --out-dir lib-es5",
"update": "npx npm-check --update",
"watch": "npx babel lib --out-dir lib-es5 --watch"
},
"lint-staged": {
"*.{js,vue}": [
"vue-cli-service lint",
"git add"
]
},
"dependencies": {
"axios": "^0.18.0",
"babel-runtime": "^6.26.0",
"callsite-record": "^4.1.3",
"chalk": "^2.4.2",
"etl": "^0.5.19",
"execa": "^1.0.0",
"fs-extra": "^7.0.1",
"inquirer": "^6.2.2",
"meow": "^5.0.0",
"node-emoji": "^1.10.0",
"ora": "^3.2.0",
"register-service-worker": "^1.5.2",
"unzipper": "^0.9.11",
"update-notifier": "^2.5.0",
"vue": "^2.6.6",
"vue-router": "^3.0.1",
"vuetify": "^1.5.5",
"vuex": "^3.0.1",
"xtend": "^4.0.1"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/plugin-transform-modules-commonjs": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.3.4",
"@clickagy/eslint-config": "^1.0.5",
"@vue/cli-plugin-babel": "^3.4.0",
"@vue/cli-plugin-eslint": "^3.4.0",
"@vue/cli-plugin-pwa": "^3.4.0",
"@vue/cli-service": "^3.4.0",
"@vue/eslint-config-standard": "^4.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"cross-env": "^5.2.0",
"electron": "^4.0.7",
"eslint": "^5.15.1",
"eslint-config-standard": "^12.0.0",
"eslint-multiplexer": "^1.0.3",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^5.0.0",
"lint-staged": "^8.1.5",
"npm-check": "^5.9.0",
"rimraf": "^2.6.3",
"standard-commit": "^1.5.0",
"standard-version": "^5.0.1",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"vue-cli-plugin-electron-builder": "^1.1.1",
"vue-cli-plugin-vuetify": "^0.5.0",
"vue-template-compiler": "^2.5.21",
"vuetify-loader": "^1.0.5",
"yorkie": "^2.0.0"
},
"gitHooks": {
"pre-commit": "lint-staged",
"post-merge": "git diff-tree -r --name-only --no-commit-id ORIG_HEAD HEAD | grep --quiet 'package-lock.json' && npm install || exit 0",
"commit-msg": "standard-commithook"
},
"standard-commit": {
"types": [
"build",
"chore",
"ci",
"docs",
"feat",
"fix",
"perf",
"refactor",
"revert",
"style",
"test"
],
"rules": {
"header-max-length": [
2,
"always",
120
]
}
}
}