|
| 1 | +{ |
| 2 | + "name": "@dexare/dbots", |
| 3 | + "version": "1.0.0", |
| 4 | + "description": "A Dexare module for the NPM package dbots", |
| 5 | + "main": "./lib/index.js", |
| 6 | + "types": "./lib/index.d.ts", |
| 7 | + "author": "Snazzah", |
| 8 | + "license": "MIT", |
| 9 | + "repository": "https://github.com/Dexare/dbots", |
| 10 | + "bugs": { |
| 11 | + "url": "https://github.com/Dexare/dbots/issues" |
| 12 | + }, |
| 13 | + "funding": { |
| 14 | + "url": "https://github.com/sponsors/Snazzah" |
| 15 | + }, |
| 16 | + "keywords": [ |
| 17 | + "dexare", |
| 18 | + "dexare-module" |
| 19 | + ], |
| 20 | + "scripts": { |
| 21 | + "build": "([ ! -d \"lib/\" ] || rm -r lib/*) && npx tsc", |
| 22 | + "build:prepare": "[ -d \"lib/\" ] || npm run build", |
| 23 | + "changelog": "ts-node scripts/changelog", |
| 24 | + "lint": "npx eslint --ext .ts ./src", |
| 25 | + "lint:fix": "npx eslint --ext .ts ./src --fix", |
| 26 | + "test": "mocha -r ts-node/register --extension ts", |
| 27 | + "prepare": "npx husky install && npm run build:prepare", |
| 28 | + "prepublishOnly": "([ -d \"lib/\" ] || (echo \"lib folder does not exist\" && exit 1)) && npm run lint:fix" |
| 29 | + }, |
| 30 | + "lint-staged": { |
| 31 | + "*.ts": "eslint --fix" |
| 32 | + }, |
| 33 | + "dependencies": { |
| 34 | + "dbots": "^8.0.2", |
| 35 | + "dexare": "^1.3.0" |
| 36 | + }, |
| 37 | + "devDependencies": { |
| 38 | + "@types/node": "^14.14.22", |
| 39 | + "@typescript-eslint/eslint-plugin": "^4.14.1", |
| 40 | + "@typescript-eslint/parser": "^4.14.1", |
| 41 | + "eslint": "^7.18.0", |
| 42 | + "eslint-config-prettier": "^8.0.0", |
| 43 | + "eslint-plugin-prettier": "^3.3.1", |
| 44 | + "husky": "^6.0.0", |
| 45 | + "lint-staged": "^10.5.4", |
| 46 | + "prettier": "^2.2.1", |
| 47 | + "ts-node": "^9.1.1", |
| 48 | + "typescript": "^4.1.3", |
| 49 | + "yarn": "^1.22.10" |
| 50 | + } |
| 51 | +} |
0 commit comments