-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathpackage.json
126 lines (126 loc) · 3.66 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
125
126
{
"name": "t2-cli",
"version": "0.1.23",
"description": "The starting point of Tessel 2's command line interface",
"main": "./index.js",
"scripts": {
"test": "grunt test",
"postinstall": "t2 install drivers --loglevel=error || true; t2 install homedir --loglevel=error || true;",
"test-cover": "nyc grunt nodeunit",
"coveralls": "nyc --reporter=lcov grunt nodeunit && cat ./coverage/lcov.info | coveralls"
},
"bin": {
"t2": "./bin/tessel-2.js",
"cargo-tessel": "./bin/cargo-tessel.js"
},
"repository": {
"type": "git",
"url": "https://github.com/tessel/t2-cli.git"
},
"keywords": [
"tessel",
"t2",
"microcontroller",
"embedded",
"cli",
"v2",
"technical",
"machine"
],
"author": "Tessel Project",
"license": "MIT",
"bugs": {
"url": "https://github.com/tessel/t2-cli/issues"
},
"homepage": "https://github.com/tessel/t2-cli",
"devDependencies": {
"concat-stream": "^2.0.0",
"coveralls": "^3.0.2",
"grunt": "^1.0.4",
"grunt-cli": "^1.2.0",
"grunt-contrib-jshint": "^1.0.0",
"grunt-contrib-nodeunit": "^2.0.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-git-authors": "^3.2.0",
"grunt-jsbeautifier": "^0.2.13",
"grunt-jscs": "^3.0.1",
"mkdirp": "^0.5.1",
"nyc": "^14.1.1",
"sinon": "^3.1.0"
},
"dependencies": {
"async": "^3.1.0",
"bindings": "^1.3.0",
"block-stream2": "^2.0.0",
"colors": "^1.3.0",
"common-tags": "^1.8.0",
"fs-extra": "4.0.3",
"fs-temp": "^1.0.0",
"fstream": "^1.0.12",
"fstream-ignore": "1.0.5",
"glob": "^7.1.6",
"inquirer": "^7.0.1",
"is-root": "^2.1.0",
"mdns-js": "^1.0.1",
"minimatch": "^3.0.0",
"node-rsa": "^1.0.5",
"nomnom": "^1.8.1",
"npm": "^6.10.3",
"npmlog": "^4.1.0",
"osenv": "^0.1.5",
"promzard": "^0.3.0",
"request": "^2.88.0",
"semver": "^5.5.0",
"sha.js": "^2.4.11",
"shell-escape": "^0.2.0",
"ssh2": "^0.6.1",
"sshpk": "^1.14.2",
"stream-to-buffer": "^0.1.0",
"t2-progress": "^1.4.0",
"t2-project": "^1.0.1",
"tar": "^2.2.2",
"tar-fs": "^2.0.0",
"tar-stream": "^2.1.0",
"uglify-es": "3.2.0",
"uglify-js": "3.7.2",
"unbzip2-stream": "^1.0.10",
"update-notifier": "^2.2.0",
"url-join": "4.0.1",
"usb": "^1.5.0",
"usb-daemon-parser": "0.0.2"
},
"preferGlobal": true,
"engines": {
"node": ">=4.2.0"
},
"contributors": [
"Jon McKay <johnnyman727@gmail.com>",
"Kelsey Breseman <ifoundthemeaningoflife@gmail.com>",
"Tim Cameron Ryan <id@timryan.org>",
"HarleyKwyn <kwyn.meagher@gmail.com>",
"Kenneth Nierenhausen <kennethnierenhausen@gmail.com>",
"Rick Waldron <waldron.rick@gmail.com>",
"Jia Huang <jialiya.huang0@gmail.com>",
"Kevin Mehall <km@kevinmehall.net>",
"Linus Unnebäck <linus@folkdatorn.se>",
"Dale Stone <dale@stonenet.co.uk>",
"Chris Boette <chris@impossibleventures.com>",
"Daniel Bunzendahl <db@bunzendahl.com>",
"Will Prater <will@superformula.com>",
"Nicholas van de Walle <nicholas@niceguys.co>",
"dtex <donovan@donovan.bz>",
"HipsterBrown <headhipster@hipsterbrown.com>",
"Nick Hehr <headhipster@hipsterbrown.com>",
"Jonathan Altman <jonathan.a@gmail.com>",
"Francis Gulotta <wizard@roborooter.com>",
"Flaki <git@flaki.hu>",
"Josh Dudley <jdudley@abrasive-tech.com>",
"Student007 <db@bunzendahl.com>",
"Thorsten Hoeger <thorsten.hoeger@hoegernet.com>",
"Rahul Ravikumar <rahul@rahulrav.com>",
"Neil Kistner <neil.kistner@gmail.com>",
"Thomas Jansen <thojansen@gmail.com>",
"Scott González <scott.gonzalez@gmail.com>",
"Chris Lewis <cflewis@google.com>"
]
}