-
Notifications
You must be signed in to change notification settings - Fork 50
/
package.json
90 lines (90 loc) · 1.82 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
{
"name": "helpful-decorators",
"version": "2.2.0",
"description": "Helpful decorators for typescript projects",
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"\\.(ts)$": "ts-jest"
},
"testRegex": "/__tests__/.*\\.(ts|js)$"
},
"scripts": {
"publish": "pack publish",
"build": "pack build",
"prepublish": "npm run test",
"test": "jest",
"commit": "git cz"
},
"repository": {
"type": "git",
"url": "https://github.com/NetanelBasal/helpful-decorators"
},
"@pika/pack": {
"pipeline": [
[
"@pika/plugin-standard-pkg",
{
"exclude": [
"__tests__/**/*"
]
}
],
[
"@pika/plugin-build-node",
{
"exclude": [
"__tests__/**/*"
]
}
],
[
"@pika/plugin-build-web",
{
"exclude": [
"__tests__/**/*"
]
}
],
[
"@pika/plugin-build-types",
{
"exclude": [
"__tests__/**/*"
]
}
]
]
},
"license": "MIT",
"author": "Netanel Basal",
"keywords": [
"decorators",
"setTimeout decorator",
"debounce decorator",
"once decorator",
"mixin decorator",
"measure decorator"
],
"devDependencies": {
"@pika/pack": "^0.3.5",
"@pika/plugin-build-node": "^0.3.14",
"@pika/plugin-build-types": "^0.3.14",
"@pika/plugin-build-web": "^0.3.14",
"@pika/plugin-standard-pkg": "^0.3.14",
"@types/jest": "24.0.11",
"jest": "24.5.0",
"ts-jest": "24.0.0",
"typescript": "3.3.3333"
},
"dependencies": {
"lodash.debounce": "4.0.8",
"lodash.delay": "4.1.1",
"lodash.memoize": "4.1.2",
"lodash.once": "4.1.1",
"lodash.throttle": "4.1.1"
}
}