-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
57 lines (57 loc) · 1.41 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
53
54
55
56
57
{
"name": "invoke-before-after",
"version": "1.3.9",
"description": "Tell your methods when to invoke by just naming them that way",
"main": "./dist/src/index.js",
"type": "commonjs",
"types": "./dist/src/index.d.ts",
"scripts": {
"start": "node ./dist/src/index.js",
"clean": "shx rm -rf dist/*",
"prepack": "npm run clean && npm run build",
"build": "tsc",
"watch": "tsc --watch",
"pretest": "npm run prepack",
"test": "jest --verbose",
"prepublish": "npm test",
"release": "standard-version",
"eslint": "eslint"
},
"keywords": [
"hooks",
"hook",
"proxy",
"watch",
"function",
"call",
"apply",
"bind",
"method",
"class",
"invoke"
],
"author": {
"name": "Ahmed Elwerdany",
"email": "[email protected]"
},
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@types/jest": "^27.4.1",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"all-contributors-cli": "^6.20.0",
"codecov": "^3.8.3",
"eslint": "^8.10.0",
"jest": "^27.5.1",
"shx": "^0.3.4",
"standard-version": "^9.3.2",
"ts-jest": "^27.1.3",
"typescript": "^4.6.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AhmedElwerdany/invoke-before-after.git"
},
"homepage": "https://github.com/AhmedElwerdany/invoke-before-after#readme"
}