-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
99 lines (99 loc) · 2.33 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "wrapme",
"description": "Functions to wrap other functions and fields/methods and to change/enhance their behavior, functionality or usage",
"version": "1.1.0",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/wrapme.esm.js",
"browser": "dist/wrapme.umd.production.min.js",
"unpkg": "dist/wrapme.umd.development.js",
"typings": "dist/index.d.ts",
"keywords": [
"wrap",
"wrapper",
"wrapping",
"intercept",
"interceptor",
"change",
"modify",
"alter",
"update",
"adjust",
"adapt",
"vary",
"replace",
"add",
"enhance",
"improve",
"enrich",
"better",
"amend",
"watch",
"observe",
"validate",
"filter",
"transform",
"convert",
"compute",
"function",
"method",
"field",
"property",
"get",
"getter",
"set",
"setter",
"effect",
"behavior",
"behaviour",
"functionality",
"usage",
"use",
"handle",
"handler",
"handling",
"aspect",
"aop",
"before",
"after",
"around",
"on",
"advice",
"pointcut"
],
"author": "Denis Sikuler",
"homepage": "https://github.com/gamtiq/wrapme",
"repository": {
"type": "git",
"url": "git://github.com/gamtiq/wrapme.git"
},
"bugs": {
"url": "https://github.com/gamtiq/wrapme/issues"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build --format cjs,esm,umd",
"test": "tsdx test",
"cover": "tsdx test --coverage --coverageReporters=text --coverageReporters=html",
"lint": "tsdx lint",
"doc": "typedoc --options typedoc-conf.js --gitRevision master --out docs --readme README.md --theme ./node_modules/typedoc-light-theme/src ./src",
"check": "npm run lint && npm test",
"all": "npm run check && npm run build && npm run doc",
"release": "bump patch --commit --tag --all --push",
"release-minor": "bump minor --commit --tag --all --push",
"release-major": "bump major --commit --tag --all --push"
},
"peerDependencies": {},
"devDependencies": {
"@jsdevtools/version-bump-prompt": "6.0.3",
"@types/jest": "25.2.1",
"eslint-config-guard": "1.1.0",
"husky": "4.2.5",
"tsdx": "0.13.1",
"tslib": "1.11.1",
"typedoc": "0.17.7",
"typedoc-light-theme": "^1.0.1",
"typescript": "3.8.3"
},
"dependencies": {}
}