cubetiq-crypto-js/package.json
dependabot[bot] 793afc699b
Bump typescript from 4.8.4 to 4.9.3
Bumps [typescript](https://github.com/Microsoft/TypeScript) from 4.8.4 to 4.9.3.
- [Release notes](https://github.com/Microsoft/TypeScript/releases)
- [Commits](https://github.com/Microsoft/TypeScript/commits)

---
updated-dependencies:
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-11-16 04:14:12 +00:00

47 lines
1.4 KiB
JSON

{
"name": "@cubetiq/cryptojs",
"version": "1.0.0",
"description": "A basic cryptojs for cubetiq application data encryption and protection.",
"main": "dist/index.js",
"scripts": {
"start": "ts-node-dev --respawn --transpile-only src/index.ts",
"build": "rm -rf dist && tsc",
"serve": "npm run build && node dist/index.js",
"test": "jest",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "https://git.cubetiqs.com/CUBETIQ/cubetiq-cryptojs.git"
},
"keywords": [
"TypeScript",
"Nodejs",
"Crypto",
"Encryption"
],
"author": "Sambo Chea <sombochea@cubetiqs.com>",
"license": "ISC",
"devDependencies": {
"@types/jest": "^27.5.0",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.42.0",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jsdoc": "^39.6.2",
"eslint-plugin-prefer-arrow": "^1.2.3",
"husky": "^8.0.2",
"jest": "^27.5.1",
"lint-staged": "^13.0.3",
"prettier": "2.7.1",
"ts-jest": "^27.1.4",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.1.0",
"typescript": "^4.9.3"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}