-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 951 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 951 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"name": "binarysearch",
"version": "1.0.0",
"description": "",
"main": "build/index.js",
"scripts": {
"start": "node -r ts-node/register -r ./src/index.ts",
"build": "NODE_ENV=production rm -rf build && tsc -p tsconfig.build.json",
"lint": "eslint . --ext .ts --fix",
"prettier": "npx prettier . --list-different",
"prettier:fix": "npx prettier . --write",
"test": "jest"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/crypto-js": "^4.2.2",
"@types/jest": "^29.5.11",
"@types/node": "^20.10.6",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-jest": "^25.7.0",
"jest": "^29.7.0",
"prettier": "^3.1.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"dependencies": {
"crypto-js": "^4.2.0"
}
}