This repository has been archived by the owner on Aug 17, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathpackage.json
124 lines (124 loc) · 5.02 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
{
"name": "weicai-scraper",
"version": "0.1.9",
"description": "One wechat scraper",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"serve:web": "vue-cli-service serve --mode devweb --open",
"build:web": "vue-cli-service build --mode proweb",
"lint": "vue-cli-service lint",
"electron:build": "vue-cli-service electron:build",
"electron:serve": "vue-cli-service electron:serve",
"postinstall": "electron-builder install-app-deps",
"postuninstall": "electron-builder install-app-deps",
"test:e2e": "vue-cli-service test:e2e",
"test:unit": "vue-cli-service test:unit",
"docs:dev": "vuepress dev _docs_src",
"docs:build": "vuepress build _docs_src",
"native:build2017-WeChatCtl": "\"C:/Program Files (x86)/Microsoft Visual Studio/2017/Professional/Common7/IDE/devenv\" src/native/WeChatCtl/WeChatCtl.sln /Build \"Release|x86\"",
"native:build2017-WeChatHelper": "\"C:/Program Files (x86)/Microsoft Visual Studio/2017/Professional/Common7/IDE/devenv\" src/native/WeChatHelper/WeChatHelper.sln /Build \"Release|x86\"",
"native:build2019-WeChatCtl": "\"C:/Program Files (x86)/Microsoft Visual Studio/2019/Enterprise/Common7/IDE/devenv\" src/native/WeChatCtl/WeChatCtl.sln /Build \"Release|x86\"",
"native:build2019-WeChatHelper": "\"C:/Program Files (x86)/MMicrosoft Visual Studio/2019/Enterprise/Common7/IDE/devenv\" src/native/WeChatHelper/WeChatHelper.sln /Build \"Release|x86\"",
"native:build-WeicaiBinding-x64": "cd src/native/WeicaiBinding && cross-env HOME=~/.electron-gyp node-gyp configure && cross-env HOME=~/.electron-gyp node-gyp rebuild --target=7.1.3 --runtime=electron --arch=x64 --dist-url=https://electronjs.org/headers",
"native:build-WeicaiBinding-ia32": "cd src/native/WeicaiBinding && cross-env HOME=~/.electron-gyp node-gyp configure && cross-env HOME=~/.electron-gyp node-gyp rebuild --target=7.1.3 --runtime=electron --arch=ia32 --dist-url=https://electronjs.org/headers",
"app:install-deps": "yarn && cd src/worker && yarn && cd ../../src/native/WeicaiBinding && yarn && cd ../../",
"app:build2017-release": "yarn run native:build2017-WeChatCtl && yarn run native:build2017-WeChatHelper && yarn run native:build-WeicaiBinding-ia32 && yarn run electron:build",
"app:build2019-release": "yarn run native:build2019-WeChatCtl && yarn run native:build2019-WeChatHelper && yarn run native:build-WeicaiBinding-ia32 && yarn run electron:build"
},
"main": "background.js",
"engines": {
"node": ">=8.11.1"
},
"repository": {
"type": "git",
"url": "https://github.com/lunnlew/weicai-scraper.git"
},
"bugs": {
"url": "https://github.com/lunnlew/weicai-scraper/issues"
},
"homepage": "https://weicai.karoy.cn/",
"author": "lunnlew",
"license": "MIT",
"dependencies": {
"async-task-mgr": "^1.1.0",
"axios": "^0.19.0",
"bindings": "^1.5.0",
"brotli": "^1.3.2",
"bufferutil": "^4.0.1",
"chai-as-promised": "^7.1.1",
"child_process": "^1.0.2",
"colorful": "^2.1.0",
"core-js": "^3.5.0",
"cron": "^1.7.2",
"express": "^4.17.1",
"express-ws": "^4.0.0",
"fast-json-stringify": "^1.15.7",
"fs-extra": "^8.1.0",
"generic-pool": "^3.7.1",
"iconv-lite": "^0.5.0",
"inquirer": "^7.0.0",
"json2csv": "^4.5.4",
"juicer": "^0.6.15",
"less": "^3.10.3",
"less-loader": "^5.0.0",
"long": "^4.0.0",
"nedb": "^1.8.0",
"node-forge": "0.9.1",
"node-powershell": "^4.0.0",
"p-queue": "^6.1.1",
"pug": "^2.0.4",
"pug-filters": "^3.1.1",
"qrcode-npm": "^0.0.3",
"querystring": "^0.2.0",
"stream-throttle": "^0.1.3",
"url": "^0.11.0",
"utf-8-validate": "^5.0.2",
"view-design": "^4.0.2",
"vue": "^2.6.10",
"vue-electron": "^1.0.6",
"vue-router": "^3.0.3",
"vuex": "^3.0.1",
"vuex-electron": "^1.0.3",
"xml2js": "^0.4.22"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^4.1.1",
"@vue/cli-plugin-e2e-nightwatch": "^4.1.1",
"@vue/cli-plugin-eslint": "^4.1.1",
"@vue/cli-plugin-unit-mocha": "^4.1.1",
"@vue/cli-service": "^4.1.1",
"@vue/eslint-config-standard": "^5.0.0",
"@vue/test-utils": "1.0.0-beta.30",
"babel-eslint": "^10.0.1",
"chai": "^4.1.2",
"commitizen": "^4.0.3",
"cross-env": "^6.0.3",
"cz-customizable": "^6.2.0",
"electron": "7.1.3",
"electron-builder": "^21.2.0",
"electron-rebuild": "^1.8.8",
"eslint": "^6.7.2",
"eslint-friendly-formatter": "^4.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-vue": "^6.0.1",
"nan": "^2.14.0",
"node-loader": "^0.6.0",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"vue-cli-plugin-electron-builder": "^1.4.2",
"vue-html-loader": "^1.2.4",
"vue-template-compiler": "^2.6.10",
"vuepress": "^1.2.0"
},
"__npminstall_done": false,
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
}
}
}