|
| 1 | +{ |
| 2 | + "name": "typescript-node-template", |
| 3 | + "version": "1.0.0", |
| 4 | + "description": "", |
| 5 | + "main": "dist/index.js", |
| 6 | + "typings": "dist/index.d.ts", |
| 7 | + "scripts": { |
| 8 | + "dev": "tsc -w -p .", |
| 9 | + "build": "rollup -c", |
| 10 | + "lint": "eslint src/**", |
| 11 | + "test": "echo \"Error: no test specified\" && exit 1", |
| 12 | + "cz": "git-cz", |
| 13 | + "release": "bump-version" |
| 14 | + }, |
| 15 | + "repository": { |
| 16 | + "type": "git", |
| 17 | + "url": "git+https://github.com/Molunerfinn/typescript-node-template.git" |
| 18 | + }, |
| 19 | + "author": "Molunerfinn", |
| 20 | + "license": "MIT", |
| 21 | + "bugs": { |
| 22 | + "url": "https://github.com/Molunerfinn/typescript-node-template/issues" |
| 23 | + }, |
| 24 | + "husky": { |
| 25 | + "hooks": { |
| 26 | + "commit-msg": "commitlint -E HUSKY_GIT_PARAMS" |
| 27 | + } |
| 28 | + }, |
| 29 | + "config": { |
| 30 | + "commitizen": { |
| 31 | + "path": "./node_modules/cz-customizable" |
| 32 | + }, |
| 33 | + "cz-customizable": { |
| 34 | + "config": "./node_modules/@picgo/bump-version/.cz-config.js" |
| 35 | + } |
| 36 | + }, |
| 37 | + "commitlint": { |
| 38 | + "extends": [ |
| 39 | + "./node_modules/@picgo/bump-version/commitlint-picgo" |
| 40 | + ] |
| 41 | + }, |
| 42 | + "homepage": "https://github.com/Molunerfinn/typescript-node-template#readme", |
| 43 | + "devDependencies": { |
| 44 | + "@commitlint/cli": "^8.3.5", |
| 45 | + "@picgo/bump-version": "^1.0.3", |
| 46 | + "@types/node": "^13.1.7", |
| 47 | + "@typescript-eslint/eslint-plugin": "2", |
| 48 | + "commitizen": "^4.0.3", |
| 49 | + "conventional-changelog": "^3.1.18", |
| 50 | + "cz-customizable": "^6.2.0", |
| 51 | + "eslint": "6", |
| 52 | + "eslint-config-standard-with-typescript": "^11.0.1", |
| 53 | + "eslint-plugin-import": "2", |
| 54 | + "eslint-plugin-node": "9", |
| 55 | + "eslint-plugin-promise": "4", |
| 56 | + "eslint-plugin-standard": "4", |
| 57 | + "husky": "^4.0.10", |
| 58 | + "rollup": "^1.29.0", |
| 59 | + "rollup-plugin-terser": "^5.2.0", |
| 60 | + "rollup-plugin-typescript2": "^0.25.3", |
| 61 | + "typescript": "^3.7.4" |
| 62 | + } |
| 63 | +} |
0 commit comments