|
| 1 | +{ |
| 2 | + "author": "Florian Keller <github@floriankeller.de>", |
| 3 | + "bin": { |
| 4 | + "update-crate": "dist/cli.js", |
| 5 | + "update-crates": "dist/cli.js" |
| 6 | + }, |
| 7 | + "dependencies": { |
| 8 | + "libraries.io": "1.2.2" |
| 9 | + }, |
| 10 | + "description": "Check your Rust packages for updates.", |
| 11 | + "devDependencies": { |
| 12 | + "@types/node": "11.10.4", |
| 13 | + "husky": "1.3.1", |
| 14 | + "lint-staged": "8.1.5", |
| 15 | + "prettier": "1.16.4", |
| 16 | + "rimraf": "2.6.3", |
| 17 | + "tslint": "5.13.1", |
| 18 | + "tslint-config-prettier": "1.18.0", |
| 19 | + "tslint-plugin-prettier": "2.0.1", |
| 20 | + "typescript": "3.3.3333" |
| 21 | + }, |
| 22 | + "files": [ |
| 23 | + "dist" |
| 24 | + ], |
| 25 | + "husky": { |
| 26 | + "hooks": { |
| 27 | + "pre-commit": "lint-staged" |
| 28 | + } |
| 29 | + }, |
| 30 | + "keywords": [ |
| 31 | + "typescript", |
| 32 | + "librariesio", |
| 33 | + "cratesio", |
| 34 | + "rust", |
| 35 | + "cli" |
| 36 | + ], |
| 37 | + "license": "MIT", |
| 38 | + "lint-staged": { |
| 39 | + "*.ts": [ |
| 40 | + "tslint --config tslint.json --project tsconfig.json --fix", |
| 41 | + "git add" |
| 42 | + ], |
| 43 | + "*.{json,md,css}": [ |
| 44 | + "prettier --write", |
| 45 | + "git add" |
| 46 | + ] |
| 47 | + }, |
| 48 | + "main": "dist/index.js", |
| 49 | + "name": "crates-updater", |
| 50 | + "repository": "https://github.com/ffflorian/crates-updater", |
| 51 | + "scripts": { |
| 52 | + "build": "tsc", |
| 53 | + "clean": "rimraf dist", |
| 54 | + "dist": "yarn clean && yarn build", |
| 55 | + "lint": "yarn lint:ts && yarn lint:other", |
| 56 | + "lint:other": "yarn prettier --list-different", |
| 57 | + "lint:ts": "tslint --config tslint.json --project tsconfig.json \"**/*.ts\"", |
| 58 | + "prettier": "prettier --ignore-path .gitignore --write \"**/*.ts\"", |
| 59 | + "test": "exit 0" |
| 60 | + }, |
| 61 | + "version": "0.0.1" |
| 62 | +} |
0 commit comments