-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.13 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
{
"name": "chatron",
"version": "2.0.0",
"productName": "Chatron",
"description": "A chatroom client built with electron and vuejs.",
"main": "./src/client",
"dependencies": {
"vue-chat-scroll": "^1.2.1"
},
"devDependencies": {
"electron": "^2.0.2",
"electron-packager": "^12.1.0",
"electron-winstaller": "^2.6.4",
"eslint": "^4.19.1",
"eslint-plugin-vue": "^4.5.0",
"htmlhint": "^0.9.13",
"vue-devtools": "^3.1.9"
},
"scripts": {
"test": "eslint src && htmlhint",
"build-x64": "node buildWin.js x64",
"build-ia32": "node buildWin.js",
"build-win": "npm run build-x64 && npm run build-ia32",
"setup": "node makeInstallers.js && node makeInstallers.js x64"
},
"repository": {
"type": "git",
"url": "git+https://github.com/robflop/chatron-client.git"
},
"keywords": [
"chatrooms",
"client",
"websockets",
"electron",
"node"
],
"author": "robflop",
"license": "MIT",
"bugs": {
"url": "https://github.com/robflop/chatron-client/issues"
},
"homepage": "https://github.com/robflop/chatron-client#readme",
"engines": {
"node": ">=7.9.0"
}
}