-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
67 lines (67 loc) · 2.05 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
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@signalk/client",
"version": "2.3.0",
"description": "A Javascript SDK for Signal K clients. Provides various abstract interfaces for discovering (via optional mDNS) the Signal K server and communication via WebSocket & REST. Aims to implement all major APIs in the most recent Signal K version(s)",
"main": "index.js",
"scripts": {
"test": "mocha --timeout 10000 --require @babel/register --exit",
"start": "nodemon --exec babel-node src/index.js",
"dist": "./node_modules/.bin/babel src -d dist",
"prepublishOnly": "npm run dist",
"preversion": "npm test",
"push": "npm publish --access public --scope @signalk .",
"create-release": "github-create-release --owner signalk --repository signalk-js-client",
"release": "git tag -d v$npm_package_version && git tag v$npm_package_version && git push --tags && git push && npm run create-release"
},
"keywords": [
"signal k",
"js",
"javascript",
"ecmascript",
"client",
"sdk"
],
"author": "Fabian Tollenaar <fabian@decipher.industries> (http://signalk.org)",
"license": "Apache-2.0",
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.2",
"@babel/preset-env": "^7.10.2",
"@babel/register": "^7.10.1",
"@signalk/github-create-release": "^1.2.0",
"bonjour": "^3.5.0",
"casper-chai": "^0.3.0",
"chai": "^4.1.0",
"freeport-promise": "^1.1.0",
"mdns": "^2.5.1",
"mocha": "^7.2.0",
"signalk-server": "^1.32.0"
},
"repository": {
"type": "git",
"url": "https://github.com/SignalK/signalk-js-client"
},
"homepage": "https://github.com/SignalK/signalk-js-client",
"bugs": {
"url": "https://github.com/SignalK/signalk-js-client/issues"
},
"standard": {
"globals": [
"describe",
"before",
"after",
"it",
"expect",
"Promise",
"WebSocket"
]
},
"dependencies": {
"core-js": "^3.6.5",
"cross-fetch": "^3.0.3",
"debug": "^4.3.2",
"eventemitter3": "^4.0.0",
"isomorphic-ws": "^4.0.0",
"uuid": "^8.1.0"
}
}