-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.13 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
{
"name": "genius-swhf51-3000",
"description": "A NodeJS / Express app that creates a web UI and API for Genius SW-HF5.1 3000 - speaker system",
"version": "0.0.1",
"private": true,
"author": "Dick Swart <dick@swart.ninja>",
"scripts": {
"start": "node ./bin/www",
"start-dev": "cross-env NODE_ENV=development DEBUG=genius-swhf51-3000:* node ./bin/www",
"test": "cross-env NODE_ENV=test jest --testTimeout=10000",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "https://github.com/DickSwart/genius-swhf51-3000"
},
"dependencies": {
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"express": "~4.16.1",
"http-errors": "~1.6.3",
"lirc_node": "0.0.4",
"lodash": "^4.17.19",
"morgan": "~1.9.1",
"pug": "^2.0.4",
"swagger-ui-express": "^4.1.2"
},
"devDependencies": {
"bootstrap": "^4.3.1",
"coveralls": "^3.0.7",
"cross-env": "^6.0.3",
"jest": "^24.9.0",
"supertest": "^4.0.2"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
]
}
}