-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.27 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
{
"name": "@first-lego-league/dev-launcher",
"version": "0.3.1",
"description": "A Launcher simulation to run modules independently during development",
"main": "index.js",
"repository": "[email protected]:FirstLegoLeague/dev-launcher.git",
"author": "Roy <[email protected]>",
"license": "GPL-3.0",
"files": [
"index.js",
"lib/**/*.js"
],
"bin": {
"dev-launcher": "index.js",
"devl": "index.js"
},
"engines": {
"node": ">=8.x"
},
"scripts": {
"lint": "eslint index.js \"lib/**/*.js\"",
"lint:fix": "eslint --fix index.js \"lib/**/*.js\"",
"depcheck": "depcheck"
},
"devDependencies": {
"@first-lego-league/eslint-config": "^1.0.0",
"depcheck": "^0.8.0",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-chai-friendly": "^0.4.1",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-node": "^9.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0"
},
"dependencies": {
"bluebird": "^3.5.5",
"colorette": "^1.0.8",
"cross-spawn": "^6.0.5",
"js-yaml": "^3.13.1",
"jsonfile": "^5.0.0",
"lodash": "^4.17.14",
"mhub": "^2.0.0",
"mkdirp": "^0.5.1",
"winston": "^3.2.1",
"yargs": "^13.3.0"
}
}