-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.31 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
{
"name": "krpc-node-examples",
"version": "0.0.1",
"description": "Examples of how to use the krpc-node project. See https://github.com/eXigentCoder/krpc-node.",
"engines": {
"node": ">=8.0.0"
},
"main": "./src/puddle-jumper/index.js",
"scripts": {
"test": "mocha",
"lint": "npm run lint-ci -- --fix",
"lint-ci": "eslint \"src/**/*.js\" \"test/**/*.js\" \"utilities/**/*.js\"",
"prettier": "prettier --write --tab-width=4 --single-quote=true --print-width=100 \"{src,test,utilities}/**/*.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/eXigentCoder/krpc-node-examples.git"
},
"keywords": [
"krpc",
"node",
"krpc-node",
"kerbal-space-program",
"ksp",
"kerbal",
"space",
"rpc"
],
"author": "Ryan Kotzen",
"license": "MIT",
"bugs": {
"url": "https://github.com/eXigentCoder/krpc-node-examples/issues"
},
"homepage": "https://github.com/eXigentCoder/krpc-node-examples#readme",
"dependencies": {
"async": "2.6.0",
"krpc-node": "4.0.1",
"lodash": "4.17.5",
"moment": "2.21.0",
"node-pid-controller": "1.0.0"
},
"devDependencies": {
"eslint": "4.18.2",
"eslint-config-prettier": "2.9.0",
"eslint-plugin-node": "6.0.1",
"eslint-plugin-prettier": "2.6.0",
"prettier": "1.11.1"
}
}