cubetiq-crypto-js/package.json
dependabot[bot] 02519c5119
Bump tsconfig-paths from 3.12.0 to 3.14.1
Bumps [tsconfig-paths](https://github.com/dividab/tsconfig-paths) from 3.12.0 to 3.14.1.
- [Release notes](https://github.com/dividab/tsconfig-paths/releases)
- [Changelog](https://github.com/dividab/tsconfig-paths/blob/master/CHANGELOG.md)
- [Commits](https://github.com/dividab/tsconfig-paths/compare/v3.12.0...v3.14.1)

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

Signed-off-by: dependabot[bot] <support@github.com>
2022-03-26 02:34:33 +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.4.0",
"@types/node": "^16.9.1",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jsdoc": "^36.0.8",
"eslint-plugin-prefer-arrow": "^1.2.3",
"husky": "^7.0.2",
"jest": "^27.5.1",
"lint-staged": "^11.1.2",
"prettier": "2.3.2",
"ts-jest": "^27.1.3",
"ts-node-dev": "^1.1.8",
"tsconfig-paths": "^3.14.1",
"typescript": "^4.4.2"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}