-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 920 Bytes
/
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
{
"name": "imp-cli",
"version": "0.2.3",
"description": "Command line interface for the Electric Imp platform",
"main": "bin/imp.js",
"engines": {
"node": "^1.5.1"
},
"preferGlobal": "true",
"bin": {
"imp": "bin/imp.js"
},
"repository": {
"type": "git",
"url": "https://github.com/cat-haines/imp-cli.git"
},
"keywords": [
"electricimp",
"imp",
"iot",
"cli"
],
"author": {
"name": "Cat Haines",
"email": "[email protected]"
},
"license": "MIT",
"scripts": {
"test": "jasmine"
},
"bugs": {
"url": "https://github.com/cat-haines/imp-cli/issues"
},
"homepage": "https://github.com/cat-haines/imp-cli",
"dependencies": {
"cli-prompt": "^0.4.2",
"cli-table": "^0.3.1",
"colors": "^1.1.0",
"commander": "^2.8.1",
"imp-api": "^0.2.8",
"osenv": "^0.1.1"
},
"devDependencies": {
"jasmine": "^2.3.1"
}
}