-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.59 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": "@first-lego-league/ms-messenger",
"description": "Module Standard matching Mhub Client",
"version": "1.4.0",
"main": "index.js",
"browser": "browser.js",
"repository": "https://github.com/FirstLegoLeague/ms-messenger.git",
"author": "Idan Stark <idanstark42@gmail.com>",
"license": "GPL-3.0",
"files": [
"index.js",
"browser.js",
"lib/**/*.js"
],
"engines": {
"node": ">=8.x"
},
"scripts": {
"test": "cross-env MHUB_URI=ws://mhub.uri mocha --recursive -r jsdom-global/register",
"test:coverage": "nyc --reporter=text yarn test",
"test:ci": "nyc --reporter=lcov yarn test && codecov",
"lint": "eslint --ext .js ./",
"lint:fix": "eslint --ext .js --fix ./"
},
"dependencies": {
"mhub": "^2.0.0",
"randomatic": "^3.1.1"
},
"devDependencies": {
"@first-lego-league/eslint-config": "^1.0.0",
"bluebird": "^3.7.2",
"chai": "^4.2.0",
"chai-spies": "^1.0.0",
"codecov": "^3.6.1",
"cross-env": "^5.2.0",
"eslint": "^5.9.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-chai-expect": "^2.0.1",
"eslint-plugin-chai-friendly": "^0.4.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"jsdom": "^16.2.2",
"jsdom-global": "^3.0.2",
"mocha": "^6.0.2",
"nyc": "^13.3.0",
"proxyquire": "^2.1.0",
"sinon": "^7.5.0"
},
"peerDependencies": {},
"optionalDependencies": {
"@first-lego-league/ms-correlation": "^1.0.3",
"@first-lego-league/ms-logger": "^2.0.2"
}
}