2022-02-14 10:24:23 +07:00
|
|
|
{
|
2022-02-14 10:54:25 +07:00
|
|
|
"name": "@cubetiq/cryptojs",
|
2022-02-14 10:24:23 +07:00
|
|
|
"version": "1.0.0",
|
2022-02-14 10:54:25 +07:00
|
|
|
"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",
|
2022-02-14 12:30:32 +07:00
|
|
|
"test": "jest",
|
2022-02-14 10:24:23 +07:00
|
|
|
"prepare": "husky install"
|
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2022-02-14 10:54:25 +07:00
|
|
|
"url": "https://git.cubetiqs.com/CUBETIQ/cubetiq-cryptojs.git"
|
2022-02-14 10:24:23 +07:00
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"TypeScript",
|
2022-02-14 10:54:25 +07:00
|
|
|
"Nodejs",
|
|
|
|
"Crypto",
|
|
|
|
"Encryption"
|
2022-02-14 10:24:23 +07:00
|
|
|
],
|
|
|
|
"author": "Sambo Chea <sombochea@cubetiqs.com>",
|
|
|
|
"license": "ISC",
|
|
|
|
"devDependencies": {
|
2023-01-14 14:12:48 +07:00
|
|
|
"@types/jest": "^29.0.0",
|
2022-12-27 11:10:17 +07:00
|
|
|
"@types/node": "^18.11.18",
|
2023-01-14 14:12:49 +07:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.48.1",
|
2023-01-17 11:10:52 +07:00
|
|
|
"@typescript-eslint/parser": "^5.48.2",
|
2023-01-02 11:18:41 +07:00
|
|
|
"eslint": "^8.31.0",
|
2023-01-03 11:12:17 +07:00
|
|
|
"eslint-config-prettier": "^8.6.0",
|
2022-11-25 11:15:53 +07:00
|
|
|
"eslint-plugin-jsdoc": "^39.6.4",
|
2022-02-14 10:24:23 +07:00
|
|
|
"eslint-plugin-prefer-arrow": "^1.2.3",
|
2023-01-04 11:11:57 +07:00
|
|
|
"husky": "^8.0.3",
|
2023-01-14 14:12:48 +07:00
|
|
|
"jest": "^29.0.0",
|
2022-12-05 11:17:11 +07:00
|
|
|
"lint-staged": "^13.1.0",
|
2023-01-14 13:37:36 +07:00
|
|
|
"prettier": "2.8.3",
|
2023-01-14 14:12:48 +07:00
|
|
|
"ts-jest": "^29.0.0",
|
2022-05-30 11:39:07 +07:00
|
|
|
"ts-node-dev": "^2.0.0",
|
2023-01-02 11:18:01 +07:00
|
|
|
"tsconfig-paths": "^4.1.2",
|
2022-12-08 11:11:24 +07:00
|
|
|
"typescript": "^4.9.4"
|
2022-02-14 10:24:23 +07:00
|
|
|
},
|
|
|
|
"lint-staged": {
|
|
|
|
"**/*": "prettier --write --ignore-unknown"
|
|
|
|
}
|
|
|
|
}
|