-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.22 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
{
"name": "lifx-client",
"version": "2.0.3",
"description": "A cli application for talking to the official lifx api",
"main": "index.js",
"author": "Erik Sutherland",
"license": "MIT",
"preferGlobal": true,
"keywords": [
"lifx",
"cli",
"command line"
],
"scripts": {
"clean": "rm -rf dist",
"lint": "standard 'src/**/*.js' --fix",
"build": "npm run clean; babel --out-dir=dist src",
"test": "npm run lint && npm run build && node ./index.js -V",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git@github.com:MrRacoon/lifx-cli.git"
},
"bugs": {
"url": "https://github.com/MrRacoon/lifx-cli/issues"
},
"bin": {
"lifx-client": "bin/lifx-client",
"lifxcli": "bin/lifx-client",
"lifx": "bin/lifx-client"
},
"lib": {
"index": "dist/index.js"
},
"engines": {
"node": ">= 0.10.0"
},
"dependencies": {
"isomorphic-fetch": "^2.2.1",
"node-getopt": "~0.2.3",
"node-notifier": "^5.1.2",
"parse-color": "~1.0.0",
"rc-yaml": "^2.0.0"
},
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-preset-es2015": "^6.24.0",
"standard": "^10.0.2"
},
"babel": {
"presets": [
"es2015"
]
}
}