-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
executable file
·46 lines (46 loc) · 1.11 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
{
"name": "lifx-http-api",
"version": "1.0.3",
"description": "Thin wrapper around the Lifx HTTP API",
"main": "dist/lifx.js",
"scripts": {
"prepublish": "npm run build",
"build": "node_modules/.bin/babel source --presets babel-preset-es2015 --out-dir dist",
"test": "npm run build && node_modules/.bin/istanbul cover -root dist/ node_modules/mocha/bin/_mocha --recursive test",
"report-coverage": "node_modules/.bin/codecov"
},
"keywords": [
"lifx",
"http",
"api",
"promises",
"light",
"bulb"
],
"author": {
"name": "klarstil",
"email": "klarstil@googlemail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/klarstil/lifx-http-api"
},
"bugs": {
"url": "https://github.com/klarstil/lifx-http-api/issues"
},
"license": "MIT",
"dependencies": {
"lodash": "^4.2.1",
"q": "^1.4.1",
"request": "^2.69.0"
},
"devDependencies": {
"babel-cli": "^6.4.5",
"babel-preset-es2015": "^6.3.13",
"chai": "^3.5.0",
"chai-http": "^2.0.1",
"codecov": "^1.0.1",
"istanbul": "^0.4.2",
"mocha": "^2.4.5"
}
}