ts-ci/package.json

56 lines
1.5 KiB
JSON
Raw Normal View History

2020-05-14 00:47:15 +02:00
{
"name": "#{REPO_NAME}#",
"version": "0.0.0",
"description": "#{DESC}#",
"repository": {
"type": "git",
"url": "git://github.com/#{USER_OR_ORG}#/#{REPO_NAME}#.git"
},
2020-08-18 16:48:58 +02:00
"main": "dist/index.js",
"types": "dist/index.d.ts",
2020-05-14 00:47:15 +02:00
"scripts": {
2021-08-01 02:43:03 +02:00
"test": "echo DODO",
2021-08-01 04:56:18 +02:00
"build": "tsc",
2020-05-27 22:02:44 +02:00
"lint:check": "eslint . --ext .ts,.tsx",
"lint": "npm run lint:check -- --fix",
"_format": "prettier '**/*.{ts,tsx,json,md}'",
"format": "npm run _format -- --write",
2020-10-23 02:53:24 +02:00
"format:check": "npm run _format -- --list-different"
2020-05-27 22:02:44 +02:00
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix"
],
"*.{ts,tsx,json,md}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged -v"
}
2020-05-14 00:47:15 +02:00
},
"author": "u/#{USER_OR_ORG}#",
"license": "MIT",
"files": [
2020-08-18 16:48:58 +02:00
"src/",
"!src/test/",
"dist/",
"!dist/test/",
"!dist/tsconfig.tsbuildinfo"
2020-05-14 00:47:15 +02:00
],
"keywords": [],
2020-05-27 22:02:44 +02:00
"homepage": "https://github.com/#{USER_OR_ORG}#/#{REPO_NAME}#",
2020-05-14 00:47:15 +02:00
"devDependencies": {
2021-08-01 02:43:03 +02:00
"@types/node": "^16.4.9",
2021-08-01 03:44:42 +02:00
"typescript": "^4.3.5",
2021-08-01 02:43:03 +02:00
"@typescript-eslint/eslint-plugin": "^4.28.5",
"@typescript-eslint/parser": "^4.28.5",
"eslint": "^7.32.0",
2021-05-21 08:18:11 +02:00
"eslint-config-prettier": "^8.3.0",
"husky": "^4.3.8",
2021-08-01 02:43:03 +02:00
"lint-staged": "^11.1.1",
2021-08-01 03:44:42 +02:00
"prettier": "^2.3.2"
2020-05-14 00:47:15 +02:00
}
}