-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
56 lines (56 loc) · 1.28 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
51
52
53
54
55
56
{
"name": "@smart-home-services/lifx-controller",
"version": "3.0.6",
"description": "LIFX controller software using WebSockets.",
"license": "MITNFA",
"scripts": {
"debug": "nodemon --inspect app.js",
"lint": "node app.js lint",
"lint:watch": "nodemon app.js lint",
"start": "nodemon app.js",
"test": "ava",
"test:watch": "ava --watch"
},
"engines": {
"node": ">=8.11.4",
"yarn": ">=1.6.0"
},
"_moduleAliases": {
"$cache": "./.cache",
"$redux": "./redux",
"$sounds": "./sounds",
"$utils": "./utils"
},
"ava": {
"babel": {
"testOptions": {
"babelrc": false
}
},
"concurrency": 5,
"files": [
"redux/**/*.test.js",
"utils/**/*.test.js"
],
"sources": [
"**/*.js"
]
},
"dependencies": {
"@redux-observable-backend/core": "^4.4.0",
"@redux-observable-backend/node": "^4.4.0",
"@redux-observable-backend/redux-utils": "^4.4.0",
"@redux-observable-backend/websocket": "^4.4.0",
"better-module-alias": "^1.1.0",
"chalk": "^4.1.0",
"lifx-lan-client": "^1.0.2",
"node-fetch": "^2.6.1"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/Sawtaytoes/Smart-Home-Services.git"
}
}