This repository was archived by the owner on Jul 10, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.8 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.8 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "ur5",
"version": "0.47.0-beta",
"description": "Platform for manage UniversalRobotics UR5",
"main": "bin/app.js",
"author": "Yuuki Wesp",
"license": "MIT",
"private": false,
"keywords": [
"universalrobotics",
"ur5-robot",
"ur5-platform",
"typescript",
"polyscope",
"robot",
"ur5",
"robot-modes"
],
"bugs": {
"url": "https://github.com/0xF6/UniversalRobotics/issues"
},
"homepage": "https://github.com/0xF6/UniversalRobotics#readme",
"dependencies": {
"@types/electron": "^1.6.10",
"@types/jquery": "^3.3.2",
"@types/mathjs": "^3.20.0",
"@types/node": "^10.1.2",
"@types/node-int64": "^0.4.29",
"electron": "2.0.1",
"jquery": "^3.3.1",
"linq": "^3.1.0",
"linqable.ts": "^1.7.0",
"mathjs": "^4.2.2",
"node-file-exists": "^1.1.0",
"node-int64": "^0.4.0",
"sleep-promise": "^6.0.0",
"typescript": "^2.8.3"
},
"scripts": {
"build": "tsc --declaration",
"test": "@echo off && echo test not found",
"start": "tsc --declaration && node bin/app.js",
"win": "tsc --declaration && electron bin/app.js",
"win-build": "tsc --declaration && electron-packager . UR5 --ignore=node_modules/electron* --platform=win32 --arch=x64 --out=./Release --overwrite --ignore=Release",
"unix-build": "tsc --declaration && electron-packager . UR5 --ignore=node_modules/electron* --platform=linux --arch=x64 --out=./Release --overwrite --ignore=Release",
"darwin-build": "tsc --declaration && electron-packager . UR5 --ignore=node_modules/electron* --platform=darwin --arch=x64 --out=./Release --overwrite --ignore=Release",
"build-all": "yarn win-build && yarn unix-build && yarn darwin-build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/0xF6/UniversalRobotics.git"
}
}