generated from krauters/typescript-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.37 KB
/
package.json
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "@krauters/monkey-patcher",
"description": " Monkey Patcher is a package for modifying the behavior of functions or objects at runtime, without altering original code. ",
"version": "0.3.0",
"main": "dist/index.js",
"type": "commonjs",
"scripts": {
"build": "tsc",
"dev": "ts-node ./src/index.ts",
"fix": "npm run lint -- --fix",
"lint": "npx eslint src/**",
"prepare": "husky || true",
"prepublishOnly": "npm run build",
"start": "nodemon --inspect -e ts -w ./src -x npm run dev",
"test": "npm run lint && jest",
"upgrade:all": "npx npm-check-updates --upgrade && npm install"
},
"keywords": [
"helper",
"monkey-patcher",
"monkey",
"typescript",
"utility",
"utils"
],
"author": "Colten Krauter <coltenkrauter>",
"bugs": {
"url": "https://github.com/krauters/monkey-patcher/issues/new?title=%5BBUG%5D+Brief+Description&template=bug_report.md"
},
"repository": {
"type": "git",
"url": "https://github.com/krauters/monkey-patcher.git"
},
"homepage": "https://buymeacoffee.com/coltenkrauter",
"license": "ISC",
"devDependencies": {
"@jest/globals": "^29.7.0",
"@krauters/eslint-config": "^1.4.0",
"@krauters/utils": "^1.0.0",
"@types/jest": "^29.5.14",
"husky": "^9.1.6",
"jest": "^29.7.0",
"nodemon": "^3.1.7",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
},
"files": [
"dist",
"scripts"
]
}