sort
Showing
.eslintrc.js
0 → 100644
.npmignore
0 → 100644
.prettierrc
0 → 100644
This diff is collapsed.
install-npm.sh
0 → 100755
This diff is collapsed.
| ... | @@ -2,10 +2,11 @@ | ... | @@ -2,10 +2,11 @@ |
| "name": "league-tabulate", | "name": "league-tabulate", | ||
| "version": "1.0.0", | "version": "1.0.0", | ||
| "description": "Tabulator", | "description": "Tabulator", | ||
| "main": "build/run.js", | "main": "dist/run.js", | ||
| "scripts": { | "scripts": { | ||
| "build": "./node_modules/.bin/tsc", | "build": "./node_modules/.bin/tsc", | ||
| "start": "node build/run.js" | "start": "node dist/run.js", | ||
| "pack": "mkdir output ; pkg --out-path output ." | |||
| }, | }, | ||
| "repository": { | "repository": { | ||
| "type": "git", | "type": "git", | ||
| ... | @@ -13,13 +14,29 @@ | ... | @@ -13,13 +14,29 @@ |
| }, | }, | ||
| "author": "Nanahira", | "author": "Nanahira", | ||
| "license": "ISC", | "license": "ISC", | ||
| "bin": "dist/run.js", | |||
| "pkg": { | |||
| "scripts": [ | |||
| "dist/**/*.js" | |||
| ], | |||
| "assets": [] | |||
| }, | |||
| "dependencies": { | "dependencies": { | ||
| "@types/node": "^14.6.0", | |||
| "@types/underscore": "^1.10.22", | |||
| "jinja-js": "^0.1.8", | "jinja-js": "^0.1.8", | ||
| "lodash": "^4.17.21", | |||
| "moment": "^2.27.0", | "moment": "^2.27.0", | ||
| "typescript": "^4.0.2", | |||
| "underscore": "^1.10.2", | |||
| "yaml": "^1.10.0" | "yaml": "^1.10.0" | ||
| }, | |||
| "devDependencies": { | |||
| "@types/lodash": "^4.14.172", | |||
| "@types/node": "^16.6.2", | |||
| "@typescript-eslint/eslint-plugin": "^4.29.2", | |||
| "@typescript-eslint/parser": "^4.29.2", | |||
| "eslint": "^7.32.0", | |||
| "eslint-config-prettier": "^8.3.0", | |||
| "eslint-plugin-prettier": "^3.4.0", | |||
| "pkg": "^5.3.1", | |||
| "prettier": "^2.3.2", | |||
| "typescript": "^4.3.5" | |||
| } | } | ||
| } | } |
Please register or sign in to comment