-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.85 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.85 KB
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
{
"name": "@first-lego-league/synced-resources",
"description": "A Resource that uses ms-client and ms-messenger to keep itself updated with a service",
"version": "1.4.0",
"main": "index.js",
"browser": "browser.js",
"repository": "https://github.com/FirstLegoLeague/ms-resource.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 nyc -n=lib/**/*.js --reporter=text --check-coverage --lines 90 mocha --recursive",
"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": {
"@first-lego-league/ms-client": "^1.3.0",
"@first-lego-league/ms-correlation": "^0.0.5",
"@first-lego-league/ms-messenger": "^1.4.0",
"axios": "^0.19.2",
"bluebird": "^3.5.3",
"body-parser": "^1.18.3",
"event-emitter-es6": "^1.1.5",
"mongodb": "^3.2.3",
"router": "^1.3.3"
},
"devDependencies": {
"@first-lego-league/eslint-config": "^0.1.0",
"@first-lego-league/ms-logger": "^2.0.2",
"chai": "^4.2.0",
"chai-spies": "^1.0.0",
"chai-string": "^1.5.0",
"cross-env": "^5.2.0",
"eslint": "^5.12.0",
"eslint-config-first-lego-league": "^1.0.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"express": "^4.16.4",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"proxyquire": "^2.1.0",
"supertest": "^4.0.2"
},
"peerDependencies": {
"@first-lego-league/ms-logger": "^2.0.0"
}
}