Added the dependencies.
Some checks failed
Lint / pre-commit Linting (push) Failing after 42s

This commit is contained in:
2023-11-25 00:59:10 +01:00
parent 0858cc69be
commit 20d547fd4d
607 changed files with 88800 additions and 0 deletions

47
node_modules/screeps-api/package.json generated vendored Normal file
View File

@ -0,0 +1,47 @@
{
"name": "screeps-api",
"version": "1.16.0",
"description": "",
"repository": "screepers/node-screeps-api",
"main": "dist/ScreepsAPI.js",
"module": "src/index.js",
"scripts": {
"build": "rollup -c",
"prepublishOnly": "npm run build",
"lint": "standard src/**/*.js",
"lint-fix": "standard src/**/*.js --fix",
"test_": "mocha",
"test": "echo Tests disabled, TODO: FIX THIS!",
"2npm": "publish-if-not-published"
},
"author": "Adam Shumann",
"license": "ISC",
"bin": {
"screeps-api": "bin/screeps-api.js"
},
"dependencies": {
"axios": "^0.21.1",
"commander": "^7.2.0",
"debug": "^4.1.1",
"ws": "^7.4.4",
"yamljs": "^0.3.0"
},
"optionalDependencies": {
"bufferutil": "^4.0.1",
"utf-8-validate": "^5.0.2"
},
"devDependencies": {
"lodash": "^4.17.11",
"mocha": "^8.3.2",
"publish-if-not-published": "^2.0.0",
"rollup": "^2.44.0",
"rollup-plugin-typescript2": "^0.30.0",
"standard": "*",
"tslib": "^2.2.0",
"typescript": "^4.2.4"
},
"browser": {
"ws": "./src/ws-browser.js"
},
"types": "dist/types/index.d.ts"
}