Reinstalled with --fix
Some checks failed
Lint / pre-commit Linting (push) Failing after 51s

This commit is contained in:
2023-11-26 16:51:02 +01:00
parent ae8a515ded
commit 67796af83c
671 changed files with 158468 additions and 19041 deletions

View File

@ -1,18 +1,16 @@
{
"name": "screeps-api",
"version": "1.16.0",
"version": "1.7.2",
"description": "",
"repository": "screepers/node-screeps-api",
"main": "dist/ScreepsAPI.js",
"module": "src/index.js",
"main": "dist/ScreepsAPI.cjs.js",
"module": "dist/ScreepsAPI.es.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"
"prepublish": "npm run build",
"lint": "standard src test",
"test": "mocha",
"2npm": "publish"
},
"author": "Adam Shumann",
"license": "ISC",
@ -20,28 +18,34 @@
"screeps-api": "bin/screeps-api.js"
},
"dependencies": {
"axios": "^0.21.1",
"commander": "^7.2.0",
"debug": "^4.1.1",
"ws": "^7.4.4",
"commander": "^2.15.1",
"bluebird": "^3.5.0",
"fetch-ponyfill": "^6.0.2",
"node-fetch": "^2.1.2",
"ws": "^5.2.0",
"yamljs": "^0.3.0"
},
"optionalDependencies": {
"bufferutil": "^4.0.1",
"utf-8-validate": "^5.0.2"
"bufferutil": "^3.0.5",
"utf-8-validate": "^4.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"
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"lodash": "^4.17.4",
"mocha": "^3.5.0",
"publish": "^0.6.0",
"rollup": "^0.45.2",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-watch": "^4.3.1",
"standard": "*"
},
"browser": {
"ws": "./src/ws-browser.js"
},
"types": "dist/types/index.d.ts"
}
}