forked from tessel/t2-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 1.91 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 1.91 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
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
{
"name": "t2-cli",
"version": "0.0.16",
"description": "The starting point of Tessel 2's command line interface",
"main": "./index.js",
"scripts": {
"test": "grunt test",
"postinstall": "t2 install-drivers || true"
},
"bin": {
"t2": "./bin/tessel-2.js"
},
"repository": {
"type": "git",
"url": "https://github.com/tessel/v2-cli.git"
},
"keywords": [
"tessel",
"t2",
"microcontroller",
"embedded",
"cli",
"v2",
"technical",
"machine"
],
"author": "Technical Machine",
"license": "MIT",
"bugs": {
"url": "https://github.com/tessel/v2-cli/issues"
},
"homepage": "https://github.com/tessel/v2-cli",
"devDependencies": {
"grunt": "^0.4.5",
"grunt-cli": "^0.1.13",
"grunt-contrib-jshint": "^0.11.2",
"grunt-contrib-nodeunit": "^0.4.1",
"grunt-contrib-watch": "^0.6.1",
"grunt-jsbeautifier": "^0.2.10",
"grunt-jscs": "^2.3.0",
"mkdirp": "^0.5.1",
"sinon": "^1.14.1"
},
"dependencies": {
"acorn": "^3.0.2",
"async": "^1.4.2",
"bindings": "^1.2.1",
"colors": "^1.1.0",
"common-tags": "0.0.1",
"debug": "^2.2.0",
"fs-extra": "^0.26.2",
"fs-temp": "^1.0.0",
"fstream": "^1.0.8",
"fstream-ignore": "1.0.2",
"glob": "^5.0.15",
"inquirer": "^0.8.5",
"mdns-js": "^0.4.0",
"minimatch": "^3.0.0",
"node-rsa": "^0.2.26",
"nomnom": "^1.8.1",
"npm": "^2.7.1",
"osenv": "^0.1.0",
"progress": "^1.1.8",
"promzard": "^0.3.0",
"request": "^2.60.0",
"semver": "^5.1.0",
"shell-escape": "^0.2.0",
"sprintf-js": "^1.0.2",
"ssh2": "^0.4.2",
"sshpk": "^1.6.0",
"stream-to-buffer": "^0.1.0",
"t2-project": "^0.1.0",
"tar": "^2.1.1",
"tar-stream": "^1.3.0",
"uglify-js": "^2.5.0",
"url-join": "0.0.1",
"usb": "1.1.2",
"usb-daemon-parser": "0.0.2"
},
"preferGlobal": true,
"engines": {
"node": ">=4.2.0"
}
}