-
Notifications
You must be signed in to change notification settings - Fork 56
/
package.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.17",
"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": "^1.5.1",
"coveralls": "^2.11.9",
"grunt": "^1.0.1",
"grunt-cli": "^1.2.0",
"grunt-contrib-jshint": "^1.0.0",
"grunt-contrib-nodeunit": "^1.0.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-git-authors": "^3.2.0",
"grunt-jsbeautifier": "^0.2.13",
"grunt-jscs": "^3.0.1",
"mkdirp": "^0.5.1",
"nyc": "^8.3.2",
"sinon": "^1.17.7"
},
"dependencies": {
"async": "^1.4.2",
"bindings": "^1.2.1",
"block-stream2": "^1.1.0",
"colors": "^1.1.0",
"common-tags": "^1.4.0",
"fs-extra": "^0.26.2",
"fs-temp": "^1.0.0",
"fstream": "^1.0.8",
"fstream-ignore": "1.0.5",
"glob": "^5.0.15",
"inquirer": "^0.8.5",
"is-root": "^1.0.0",
"mdns-js": "^0.5.0",
"minimatch": "^3.0.0",
"node-rsa": "^0.2.26",
"nomnom": "^1.8.1",
"npm": "^3.10.10",
"npmlog": "^4.1.0",
"osenv": "^0.1.0",
"promzard": "^0.3.0",
"request": "^2.60.0",
"semver": "^5.1.0",
"sha.js": "^2.4.5",
"shell-escape": "^0.2.0",
"ssh2": "^0.4.2",
"sshpk": "^1.6.0",
"stream-to-buffer": "^0.1.0",
"t2-progress": "^1.4.0",
"t2-project": "^0.4.0",
"tar": "^2.1.1",
"tar-fs": "^1.13.2",
"tar-stream": "^1.3.0",
"uglify-es": "3.2.0",
"uglify-js": "3.1.3",
"unbzip2-stream": "^1.0.10",
"update-notifier": "^1.0.2",
"url-join": "0.0.1",
"usb": "^1.2.0",
"usb-daemon-parser": "0.0.2"
},
"preferGlobal": true,
"engines": {
"node": ">=4.2.0"
},
"contributors": [
"Jon McKay <[email protected]>",
"Kelsey Breseman <[email protected]>",
"Tim Cameron Ryan <[email protected]>",
"HarleyKwyn <[email protected]>",
"Kenneth Nierenhausen <[email protected]>",
"Rick Waldron <[email protected]>",
"Jia Huang <[email protected]>",
"Kevin Mehall <[email protected]>",
"Linus Unnebäck <[email protected]>",
"Dale Stone <[email protected]>",
"Chris Boette <[email protected]>",
"Daniel Bunzendahl <[email protected]>",
"Will Prater <[email protected]>",
"Nicholas van de Walle <[email protected]>",
"dtex <[email protected]>",
"HipsterBrown <[email protected]>",
"Nick Hehr <[email protected]>",
"Jonathan Altman <[email protected]>",
"Francis Gulotta <[email protected]>",
"Flaki <[email protected]>",
"Josh Dudley <[email protected]>",
"Student007 <[email protected]>",
"Thorsten Hoeger <[email protected]>",
"Rahul Ravikumar <[email protected]>",
"Neil Kistner <[email protected]>",
"Thomas Jansen <[email protected]>",
"Scott González <[email protected]>",
"Chris Lewis <[email protected]>"
]
}