rework
Showing
.eslintignore
0 → 100644
.eslintrc.js
0 → 100644
.idea/jsLinters/eslint.xml
0 → 100644
.npmignore
0 → 100644
This source diff could not be displayed because it is too large. You can view the blob instead.
| ... | ... | @@ -2,12 +2,11 @@ |
| "name": "tx3-bang-reader", | ||
| "version": "1.0.0", | ||
| "description": "Read TX3 bang and parse it", | ||
| "main": "build/src/run.js", | ||
| "main": "dist/run.js", | ||
| "scripts": { | ||
| "build": "./node_modules/.bin/tsc", | ||
| "pack": "mkdir dist ; ./node_modules/.bin/pkg --out-path dist .", | ||
| "fetch": "node build/src/run.js", | ||
| "start": "node build/src/run.js cron" | ||
| "build": "tsc", | ||
| "fetch": "node dist/src/run.js", | ||
| "start": "node dist/src/run.js cron" | ||
| }, | ||
| "repository": { | ||
| "type": "git", | ||
| ... | ... | @@ -22,17 +21,10 @@ |
| "url": "https://github.com/purerosefallen/tx3-bang-reader/issues" | ||
| }, | ||
| "homepage": "https://github.com/purerosefallen/tx3-bang-reader#readme", | ||
| "bin": "build/src/run.js", | ||
| "pkg": { | ||
| "scripts": [ | ||
| "build/src/*.js" | ||
| ], | ||
| "assets": [] | ||
| }, | ||
| "bin": "dist/src/run.js", | ||
| "dependencies": { | ||
| "@types/cron": "^1.7.2", | ||
| "@types/csv-parse": "^1.2.2", | ||
| "@types/node": "^14.0.14", | ||
| "@types/underscore": "^1.10.2", | ||
| "@types/yaml": "^1.9.7", | ||
| "axios": "^0.19.2", | ||
| ... | ... | @@ -44,8 +36,21 @@ |
| "posthtml-parser": "^0.4.2", | ||
| "promise-mysql": "^4.1.3", | ||
| "querystring": "^0.2.0", | ||
| "typescript": "^3.9.5", | ||
| "underscore": "^1.10.2", | ||
| "yaml": "^1.10.0" | ||
| }, | ||
| "devDependencies": { | ||
| "@types/jest": "^27.4.0", | ||
| "@types/node": "^17.0.18", | ||
| "@typescript-eslint/eslint-plugin": "^4.33.0", | ||
| "@typescript-eslint/parser": "^4.33.0", | ||
| "eslint": "^7.32.0", | ||
| "eslint-config-prettier": "^8.3.0", | ||
| "eslint-plugin-prettier": "^3.4.1", | ||
| "jest": "^27.5.1", | ||
| "prettier": "^2.5.1", | ||
| "rimraf": "^3.0.2", | ||
| "ts-jest": "^27.1.3", | ||
| "typescript": "^4.5.5" | ||
| } | ||
| } |
Please register or sign in to comment