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": {
|
2022-05-03 12:30:56 +07:00
|
|
|
"@types/jest": "^27.5.0",
|
2022-06-16 11:36:23 +07:00
|
|
|
"@types/node": "^18.0.0",
|
2022-06-15 19:47:22 +07:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.28.0",
|
2022-06-14 11:49:02 +07:00
|
|
|
"@typescript-eslint/parser": "^5.28.0",
|
2022-06-06 11:46:16 +07:00
|
|
|
"eslint": "^8.17.0",
|
2022-03-26 09:34:39 +07:00
|
|
|
"eslint-config-prettier": "^8.5.0",
|
2022-05-25 11:35:35 +07:00
|
|
|
"eslint-plugin-jsdoc": "^39.3.2",
|
2022-02-14 10:24:23 +07:00
|
|
|
"eslint-plugin-prefer-arrow": "^1.2.3",
|
2022-05-10 11:36:33 +07:00
|
|
|
"husky": "^8.0.1",
|
2022-02-14 12:30:32 +07:00
|
|
|
"jest": "^27.5.1",
|
2022-06-09 11:40:17 +07:00
|
|
|
"lint-staged": "^13.0.1",
|
2022-06-17 11:32:39 +07:00
|
|
|
"prettier": "2.7.1",
|
2022-03-28 11:40:47 +07:00
|
|
|
"ts-jest": "^27.1.4",
|
2022-05-30 11:39:07 +07:00
|
|
|
"ts-node-dev": "^2.0.0",
|
2022-05-03 11:34:16 +07:00
|
|
|
"tsconfig-paths": "^4.0.0",
|
2022-06-06 11:46:20 +07:00
|
|
|
"typescript": "^4.7.3"
|
2022-02-14 10:24:23 +07:00
|
|
|
},
|
|
|
|
"lint-staged": {
|
|
|
|
"**/*": "prettier --write --ignore-unknown"
|
|
|
|
}
|
|
|
|
}
|