-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
68 lines (68 loc) · 3.36 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
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "krpc-node",
"version": "4.0.2",
"description": "Node client lib for krpc",
"engines": {
"node": ">=8.0.0"
},
"main": "lib/client.js",
"scripts": {
"test": "mocha test/**/*.js",
"lint": "npm run lint-ci -- --fix",
"lint-ci": "eslint \"lib/**/*.js\" \"test/**/*.js\" \"utilities/**/*.js\"",
"test-ksp-running": "node_modules/.bin/istanbul --include-all-sources cover node_modules/mocha/bin/_mocha test/**/*.js",
"prettier": "prettier --write --tab-width=4 --single-quote=true --print-width=100 \"{lib,test,utilities}/**/*.js\"",
"report": "plato -r -d report -e .eslintrc lib",
"readme": "npm run readme-client && npm run readme-drawing && npm run readme-infernal-robotics && npm run readme-kerbal-alarm-clock && npm run readme-krpc && npm run readme-remote-tech && npm run readme-space-center && npm run readme-ui",
"readme-client": "node_modules/.bin/documentation readme \"lib/client.js\" \"lib/encoders.js\" \"lib/decoders.js\" --readme-file=documentation/client.md --section=\"API\" --config=\"documentation/client.yml\" --shallow=true",
"readme-drawing": "node_modules/.bin/documentation readme \"lib/services/drawing.js\" --readme-file=\"documentation/drawing.md\" --section=API --shallow=true",
"readme-infernal-robotics": "node_modules/.bin/documentation readme \"lib/services/infernal-robotics.js\" --readme-file=\"documentation/infernal-robotics.md\" --section=API --shallow=true",
"readme-kerbal-alarm-clock": "node_modules/.bin/documentation readme \"lib/services/kerbal-alarm-clock.js\" --readme-file=\"documentation/kerbal-alarm-clock.md\" --section=API --shallow=true",
"readme-krpc": "node_modules/.bin/documentation readme \"lib/services/krpc.js\" --readme-file=\"documentation/krpc.md\" --section=API --shallow=true",
"readme-remote-tech": "node_modules/.bin/documentation readme \"lib/services/remote-tech.js\" --readme-file=\"documentation/remote-tech.md\" --section=API --shallow=true",
"readme-space-center": "node_modules/.bin/documentation readme \"lib/services/space-center.js\" --readme-file=\"documentation/space-center.md\" --section=API --shallow=true",
"readme-ui": "node_modules/.bin/documentation readme \"lib/services/ui.js\" --readme-file=\"documentation/ui.md\" --section=API --shallow=true",
"update": "npm-check -Eu",
"snyk-protect": "snyk protect",
"patch": "npm version patch && npm publish",
"minor": "npm version minor && npm publish",
"major": "npm version major && npm publish",
"preversion": "npm run prettier && npm run readme && npm run lint",
"postpublish": "git push origin master --follow-tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eXigentCoder/krpc-node.git"
},
"keywords": [
"ksp",
"krpc",
"node"
],
"author": "Ryan Kotzen",
"license": "MIT",
"dependencies": {
"bytebuffer": "5.0.1",
"documentation": "5.4.0",
"lodash": "4.17.5",
"protobufjs": "6.8.5",
"ws": "4.1.0"
},
"devDependencies": {
"async": "2.6.0",
"chai": "4.2.0",
"dirty-chai": "2.0.1",
"eslint": "5.16.0",
"eslint-config-prettier": "4.2.0",
"eslint-plugin-node": "9.0.1",
"eslint-plugin-prettier": "3.0.1",
"istanbul": "0.4.5",
"long": "4.0.0",
"mocha": "6.1.4",
"npm-check": "5.9.0",
"plato": "1.7.0",
"prettier": "1.17.0",
"snyk": "1.162.0"
},
"snyk": true
}