-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.11 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
{
"name": "gt511c3-fps",
"version": "0.0.2",
"description": "A Server that polls a emp800 & taiko JMC then emits Results via WebSockets",
"main": "src/gt511c3.js",
"scripts": {
"build": "babel -d dist/ src/",
"test": "mocha --compilers js:babel-core/register",
"prepublish": "npm run test && npm run build",
"deploy": "npm run build && rsync -avzh ./ markus:/srv/drivers/gt511c3-fps"
},
"author": "",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://projects.dspeed.eu/peep/drivers/gt511c3-fps.git"
},
"bugs": {
"url": "https://projects.dspeed.eu/peep/drivers/gt511c3-fps/issues"
},
"homepage": "https://projects.dspeed.eu/peep/drivers/gt511c3-fps#readme",
"dependencies": {
"socket.io-client": "^3.0.0",
"async": "^2.6.2",
"promise": "^8.0.2",
"serialport": "^9.0.0"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.26.0",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-preset-es2015": "6.24.1",
"babel-preset-stage-0": "6.24.1",
"babel-polyfill": "6.26.0",
"mocha": "8.2.1"
}
}