forked from ryanolf/node-sonos-nfc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1 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
{
"name": "sonos-nfc",
"version": "0.1.0",
"description": "Use NFC tags to control Sonos - a node app inspired by and compatible with hankhank10/vinylemulator, with better NFC reader compatibility",
"main": "sonos_nfc.js",
"type": "module",
"scripts": {
"test": "jest",
"start-all": "concurrently --kill-others \"npm start\" \"npm explore sonos-http-api -- npm start\"",
"start": "node index.js",
"prepare": "husky install",
"format": "prettier --write . && git add -A ."
},
"author": "Ryan Olf",
"license": "MIT",
"dependencies": {
"concurrently": "^5.3.0",
"nfc-pcsc": "^0.8.0",
"nfccard-tool": "^0.1.1",
"node-fetch": "^2.6.1",
"sonos-http-api": "jishi/node-sonos-http-api"
},
"devDependencies": {
"@babel/core": "^7.14.8",
"@babel/preset-env": "^7.14.9",
"babel-jest": "^27.0.6",
"babel-plugin-transform-amd-to-commonjs": "^1.4.0",
"husky": "^7.0.1",
"jest": "^27.0.6",
"jest-fetch-mock": "^3.0.3",
"prettier": "^2.3.2"
}
}