-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1.73 KB
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 1.73 KB
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
{
"dependencies": {
"express": "^4.18.2",
"http": "^0.0.1-security",
"socket.io": "2",
"touchportal-api": "^3.2.1"
},
"name": "touchportal_keysightplugin",
"version": "3.1.0",
"description": "A plugin for touchportal to control websockets in keysight",
"main": "src/index.js",
"bin": "src/index.js",
"scripts": {
"start": "node src/index.js",
"build_patch": "pkg --targets node12-win-x64 . && move touchportal_keysightplugin.exe TouchPortalKeysight && npm run renameEtry && 7z a -tzip Installer/touchportal_keysightplugin.tpp TouchPortalKeysight && npm run backrenameEtry && npm version patch --no-git-tag-version",
"build_major": "pkg --targets node12-win-x64 . && move touchportal_keysightplugin.exe TouchPortalKeysight && npm run renameEtry && 7z a -tzip Installer/touchportal_keysightplugin.tpp TouchPortalKeysight && npm run backrenameEtry && npm version major --no-git-tag-version",
"build_minor": "pkg --targets node12-win-x64 . && move touchportal_keysightplugin.exe TouchPortalKeysight && npm run renameEtry && 7z a -tzip Installer/touchportal_keysightplugin.tpp TouchPortalKeysight && npm run backrenameEtry && npm version minor --no-git-tag-version",
"renameEtry": "node -e \"require('fs').rename('TouchPortalKeysight/entry.json', 'TouchPortalKeysight/entry.tp', function(err) { if (err) console.log(err); console.log('File successfully renamed!') })\"",
"backrenameEtry": "node -e \"require('fs').rename('TouchPortalKeysight/entry.tp', 'TouchPortalKeysight/entry.json', function(err) { if (err) console.log(err); console.log('File successfully renamed!') })\""
},
"keywords": [
"touchportal",
"keysight",
"websockets",
"socketIO"
],
"author": "Marcus Universe",
"license": "MIT"
}