|
| 1 | +{ |
| 2 | + "name": "@susisu/hokemi", |
| 3 | + "version": "0.0.0", |
| 4 | + "description": "", |
| 5 | + "repository": "https://github.com/susisu/hokemi.git", |
| 6 | + "author": "Susisu <susisu2413@yahoo.co.jp>", |
| 7 | + "license": "MIT", |
| 8 | + "main": "lib/index.js", |
| 9 | + "files": [ |
| 10 | + "lib", |
| 11 | + "src", |
| 12 | + "!src/**/*.{test,spec}.{ts,tsx}", |
| 13 | + "!src/**/__tests__" |
| 14 | + ], |
| 15 | + "scripts": { |
| 16 | + "lint": "run-s lint:eslint lint:prettier", |
| 17 | + "lint-fix": "run-s lint-fix:eslint lint-fix:prettier", |
| 18 | + "lint:eslint": "eslint '*.js' src", |
| 19 | + "lint-fix:eslint": "eslint --fix '*.js' src", |
| 20 | + "lint:prettier": "prettier --check '*.js' src", |
| 21 | + "lint-fix:prettier": "prettier --write '*.js' src", |
| 22 | + "test": "jest", |
| 23 | + "typecheck": "tsc -p tsconfig.json --noEmit", |
| 24 | + "build": "tsc --build tsconfig.build.json", |
| 25 | + "clean": "run-s clean:build clean:rm", |
| 26 | + "clean:build": "tsc --build tsconfig.build.json --clean", |
| 27 | + "clean:rm": "rimraf lib", |
| 28 | + "prepublishOnly": "run-s clean lint test build" |
| 29 | + }, |
| 30 | + "packageManager": "yarn@3.5.1", |
| 31 | + "devDependencies": { |
| 32 | + "@susisu/eslint-config": "^0.0.63", |
| 33 | + "@types/jest": "^29.5.1", |
| 34 | + "eslint": "^8.41.0", |
| 35 | + "eslint-config-prettier": "^8.8.0", |
| 36 | + "eslint-plugin-jest": "^27.2.1", |
| 37 | + "eslint-plugin-jest-formatting": "^3.1.0", |
| 38 | + "jest": "^29.5.0", |
| 39 | + "npm-run-all": "^4.1.5", |
| 40 | + "prettier": "^2.8.8", |
| 41 | + "rimraf": "^5.0.1", |
| 42 | + "ts-jest": "^29.1.0", |
| 43 | + "typescript": "^5.0.4" |
| 44 | + } |
| 45 | +} |
0 commit comments