cubetiq-crypto-js/package.json

47 lines
1.4 KiB
JSON
Raw Permalink Normal View History

2022-02-14 10:24:23 +07:00
{
"name": "@cubetiq/cryptojs",
2022-02-14 10:24:23 +07:00
"version": "1.0.0",
"description": "A basic cryptojs for cubetiq application data encryption and protection.",
2022-02-14 10:24:23 +07:00
"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",
2022-02-14 10:24:23 +07:00
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "https://git.cubetiqs.com/CUBETIQ/cubetiq-cryptojs.git"
2022-02-14 10:24:23 +07:00
},
"keywords": [
"TypeScript",
"Nodejs",
"Crypto",
"Encryption"
2022-02-14 10:24:23 +07:00
],
"author": "Sambo Chea <sombochea@cubetiqs.com>",
"license": "ISC",
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^18.15.6",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.56.0",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jsdoc": "^40.0.2",
2022-02-14 10:24:23 +07:00
"eslint-plugin-prefer-arrow": "^1.2.3",
"husky": "^8.0.3",
"jest": "^29.5.0",
"lint-staged": "^13.2.0",
2023-03-24 19:30:53 +07:00
"prettier": "2.8.7",
2023-01-14 14:12:48 +07:00
"ts-jest": "^29.0.0",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.1.2",
"typescript": "^5.0.2"
2022-02-14 10:24:23 +07:00
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}