-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.65 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
{
"name": "@first-lego-league/ms-configuration",
"description": "A configuration package supporting the MS (Module Standard)",
"version": "2.4.0",
"main": "index.js",
"repository": "https://github.com/FirstLegoLeague/configuration.git",
"author": "Idan Stark <idanstark42@gmail.com>",
"license": "GPL-3.0",
"files": [
"index.js",
"lib/**/*.js"
],
"engines": {
"node": ">=8.x"
},
"scripts": {
"test": "cross-env SECRET=mock_secret PORT=0000 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-messenger": "^1.4.0",
"bluebird": "^3.5.5",
"mhub": "^1.0.0",
"path": "^0.12.7",
"read-yaml-promise": "^1.0.2"
},
"devDependencies": {
"@first-lego-league/eslint-config": "^1.0.0",
"@first-lego-league/ms-correlation": "^1.0.1",
"@first-lego-league/ms-logger": "^2.0.0",
"chai": "^4.2.0",
"chai-spies": "^1.0.0",
"codecov": "^3.5.0",
"cross-env": "^5.2.0",
"eslint": "^5.16.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.17.3",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"mocha": "^6.1.4",
"nyc": "^14.1.1",
"proxyquire": "^2.1.0",
"yarpm": "^0.2.1"
},
"peerDependencies": {
"@first-lego-league/ms-correlation": "^1.0.0",
"@first-lego-league/ms-logger": "^1.4.1 || ^2.0.0"
}
}