Skip to content

Commit

Permalink
feat(package.json): file created
Browse files Browse the repository at this point in the history
  • Loading branch information
rimiti committed Apr 28, 2021
0 parents commit cc5e947
Show file tree
Hide file tree
Showing 2 changed files with 4,254 additions and 0 deletions.
37 changes: 37 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
{
"name": "@tictactrip/api-cache",
"version": "1.0.0",
"description": "API Redis cache manager",
"author": "Tictactrip <[email protected]>",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/jest": "26.0.22",
"@typescript-eslint/eslint-plugin": "4.22.0",
"@typescript-eslint/parser": "4.22.0",
"eslint": "7.24.0",
"eslint-config-prettier": "8.2.0",
"jest": "26.6.3",
"prettier": "2.2.1",
"ts-jest": "26.5.5",
"typescript": "4.2.4"
},
"scripts": {
"clean": "rm -rf dist coverage",
"build:clean": "yarn clean && yarn build",
"build": "tsc",
"build:watch": "tsc -w",
"lint": "yarn prettier && yarn eslint",
"lint:fix": "yarn prettier:fix && yarn eslint:fix",
"prettier": "prettier --check '{src,__tests__}/**/*.ts'",
"prettier:fix": "prettier --write '{src,__tests__}/**/*.ts'",
"eslint": "eslint {src,__tests__}/**/*.ts",
"eslint:fix": "eslint --fix {src,__tests__}/**/*.ts",
"test": "jest",
"test:watch": "jest --watch"
}
}
Loading

0 comments on commit cc5e947

Please sign in to comment.