|
| 1 | +{ |
| 2 | + "name": "@javadev/leetcode-in-javascript", |
| 3 | + "version": "1.0.0", |
| 4 | + "description": "JavaScript-based LeetCode algorithm problem solutions, regularly updated", |
| 5 | + "keywords": [ |
| 6 | + "algorithm", |
| 7 | + "javascript", |
| 8 | + "math", |
| 9 | + "leetcode", |
| 10 | + "algorithm-competitions", |
| 11 | + "leetcode-solutions", |
| 12 | + "interview-questions", |
| 13 | + "dynamic-programming", |
| 14 | + "algorithms-and-data-structures", |
| 15 | + "leetcode-javascript" |
| 16 | + ], |
| 17 | + "homepage": "https://github.com/LeetCode-in-JavaScript", |
| 18 | + "author": "Valentyn Kolesnikov", |
| 19 | + "contributors": [ |
| 20 | + "Valentyn Kolesnikov" |
| 21 | + ], |
| 22 | + "scripts": { |
| 23 | + "lint:ts": "tslint -c tslint.json 'src/**/*.js'", |
| 24 | + "lint:fixts": "tslint -c tslint.json 'src/**/*.js' --fix", |
| 25 | + "prettier": "prettier -c --write ./src/**/*.js", |
| 26 | + "build": "rm -rf ./dist && tsc", |
| 27 | + "precommit": "lint-staged", |
| 28 | + "prepare": "husky install", |
| 29 | + "execute": "ts-node", |
| 30 | + "test": "vitest", |
| 31 | + "coverage": "vitest run --coverage" |
| 32 | + }, |
| 33 | + "repository": { |
| 34 | + "type": "git", |
| 35 | + "url": "git+https://github.com/LeetCode-in-JavaScript/LeetCode-in-JavaScript.git" |
| 36 | + }, |
| 37 | + "bugs:": "https://github.com/LeetCode-in-JavaScript/LeetCode-in-JavaScript/issues", |
| 38 | + "main": "./src/main/js/g0001_0100/s0001_two_sum/solution.js", |
| 39 | + "license": "MIT", |
| 40 | + "lint-staged": { |
| 41 | + "*.{js,json,md}": "prettier --write" |
| 42 | + }, |
| 43 | + "publishConfig": { |
| 44 | + "access": "public" |
| 45 | + }, |
| 46 | + "dependencies": { |
| 47 | + "typescript": "^5.1.6" |
| 48 | + }, |
| 49 | + "devDependencies": { |
| 50 | + "@vitest/coverage-istanbul": "^0.34.5", |
| 51 | + "commitizen": "^4.2.5", |
| 52 | + "cz-conventional-changelog": "^3.3.0", |
| 53 | + "husky": "^8.0.1", |
| 54 | + "lint-staged": "^13.0.1", |
| 55 | + "prettier": "^2.6.2", |
| 56 | + "ts-lint": "^4.5.1", |
| 57 | + "ts-node": "^10.9.1", |
| 58 | + "vitest": "^0.34.5" |
| 59 | + } |
| 60 | +} |
0 commit comments