forked from shokai/node-philips-hue
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.34 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.34 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
{
"private": true,
"name": "philips-hue",
"version": "1.0.0",
"description": "Philips Hue API",
"scripts": {
"bootstrap": "lerna-run npm i && lerna bootstrap",
"mocha": "mocha packages/*/*/test_*.es6 --compilers js:babel-register",
"eslint": "eslint packages/*/*/*.es6",
"test": "npm run eslint && npm run mocha",
"clean": "rm -rf packages/*/lib",
"build": "lerna-run --parallel babel src/ --out-dir lib/ --source-maps inline",
"watch": "parallelshell 'npm run build -- --watch' 'chokidar \"packages/*/*/*.es6\" -c \"npm run eslint\"'"
},
"dependencies": {
"babel-cli": "^6.6.5",
"babel-eslint": "^6.0.2",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.7.2",
"chai": "^3.5.0",
"chokidar-cli": "^1.2.0",
"eslint": "^2.7.0",
"eslint-plugin-if-in-test": "^0.2.0",
"lerna": "^1.1.2",
"lerna-run": "^0.0.2",
"mocha": "^2.4.5",
"parallelshell": "^2.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shokai/node-philips-hue.git"
},
"keywords": [
"philips",
"hue",
"light"
],
"author": "Sho Hashimoto <hashimoto@shokai.org>",
"license": "MIT",
"bugs": {
"url": "https://github.com/shokai/node-philips-hue/issues"
},
"homepage": "https://github.com/shokai/node-philips-hue#readme"
}