-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.66 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
{
"name": "audit-debounce",
"version": "0.1.1",
"description": "rxjs operator to debounce and audit simultaenously",
"main": "dist/commonjs/index.js",
"module": "dist/es/index.js",
"types": "dist/es/index.d.ts",
"scripts": {
"sample": "vite sample",
"test": "jest",
"lint": "eslint .",
"typecheck": "tsc -p conf/typescript/es.json --noEmit",
"coverage": "jest --coverage",
"build-commonjs": "tsc -p conf/typescript/commonjs.json",
"build-es": "tsc -p conf/typescript/es.json",
"build": "npm run build-commonjs && npm run build-es",
"prepack": "npm run build"
},
"files": [
"dist/es",
"dist/commonjs"
],
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+https://github.com/loreanvictor/audit-debounce"
},
"keywords": [],
"author": "Eugene Ghanizadeh Khoub",
"license": "MIT",
"bugs": {
"url": "https://github.com/loreanvictor/audit-debounce/issues"
},
"homepage": "https://github.com/loreanvictor/audit-debounce#readme",
"devDependencies": {
"@babel/core": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@sindresorhus/tsconfig": "^3.0.1",
"@types/jest": "^29.5.3",
"@types/node": "^20.4.2",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"babel-jest": "^29.6.1",
"eslint": "^8.45.0",
"jest": "^29.6.1",
"jest-environment-jsdom": "^29.6.1",
"rxjs": "^7.8.1",
"sleep-promise": "^9.1.0",
"ts-inference-check": "^0.2.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tslib": "^2.6.0",
"typescript": "^5.1.6",
"vite": "^4.4.4"
},
"peerDependencies": {
"rxjs": "^7.0.0"
}
}