-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.29 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
{
"name": "yilai",
"version": "0.1.2",
"description": "Yeelight Lights FrontEnd",
"main": "index.js",
"engines": {
"node": "8.4.0",
"npm": "5.4.0"
},
"scripts": {
"start": "node index.js",
"server": "nodemon index.js",
"client": "npm run start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"test": "npm run test --prefix client",
"test-ci": "npm run test-ci --prefix client && cat ./client/coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"postinstall": "cd client && npm install"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/pulento/yilai.git"
},
"keywords": [
"Yeelight",
"Controller",
"Node",
"React",
"Express"
],
"author": "Juan J. Sierralta",
"license": "GPL-2.0",
"bugs": {
"url": "https://github.com/pulento/yilai/issues"
},
"homepage": "https://github.com/pulento/yilai#readme",
"dependencies": {
"concurrently": "^3.5.0",
"debug": "^3.0.1",
"express": "^4.15.4",
"nodemon": "^1.12.1",
"yeelight-wifi": "file:node_modules/yeelight-wifi"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-env": "^1.6.0",
"coveralls": "^3.0.0",
"gulp": "^3.9.1",
"sonarqube-scanner": "^2.0.2"
}
}