-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
65 lines (65 loc) · 1.59 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
{
"name": "ts-debounce",
"version": "4.0.0",
"description": "TypeScript implementation of debounce",
"main": "dist/src/index.js",
"module": "dist/src/index.esm.js",
"types": "dist/src/index.d.ts",
"author": {
"name": "Jakub Chodorowicz",
"url": "https://github.com/chodorowicz"
},
"keywords": [
"TypeScript",
"ts",
"TS",
"std lib",
"function",
"debounce",
"wait"
],
"files": [
"dist/**/*"
],
"repository": {
"type": "git",
"url": "https://github.com/chodorowicz/ts-debounce"
},
"license": "MIT",
"devDependencies": {
"@types/jest": "^27.0.2",
"all-contributors-cli": "^6.20.0",
"jest": "^27.3.1",
"microbundle": "^0.12.4",
"np": "^7.5.0",
"prettier": "^2.4.1",
"ts-jest": "^27.0.7",
"tsd": "^0.18.0",
"typescript": "^4.4.4"
},
"scripts": {
"build": "microbundle && cp ./src/index.test-d.ts ./dist/src/",
"dev": "microbundle watch",
"prepublishOnly": "npm run build",
"test": "npm run test:code && npm run test:types",
"test:code": "jest",
"test:types": "tsc --noEmit && tsd",
"prettier:check": "prettier --check .",
"release": "np --no-yarn"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(src/__tests__/.*|(\\.|/)(test|spec))\\.ts$",
"moduleFileExtensions": [
"js",
"ts"
],
"timers": "fake"
},
"tsd": {
"directory": "src"
},
"packageManager": "[email protected]+sha512.e5a7e52a4183a02d5931057f7a0dbff9d5e9ce3161e33fa68ae392125b79282a8a8a470a51dfc8a0ed86221442eb2fb57019b0990ed24fab519bf0e1bc5ccfc4"
}