-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.18 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
{
"name": "polling-connection",
"version": "0.0.2",
"description": "Event-based polling module written in TS with time tracking and aborting support.",
"files": [
"dist"
],
"source": "./src/index.ts",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"umd:main": "dist/index.umd.js",
"module": "dist/index.m.js",
"exports": {
"require": "./dist/index.js",
"default": "./dist/index.modern.js"
},
"keywords": [
"polling",
"event",
"event-based",
"poll",
"http",
"network",
"typescript"
],
"scripts": {
"test": "jest",
"build": "microbundle",
"prepublishOnly": "npm run build"
},
"dependencies": {},
"devDependencies": {
"@types/jest": "^29.2.0",
"babel-jest": "^29.1.2",
"jest": "^29.1.2",
"microbundle": "^0.15.1",
"ts-jest": "^29.0.3"
},
"author": "Guilherme Santiago",
"homepage": "https://github.com/polling-connection",
"license": "MIT",
"repository": "https://github.com/polling-connection",
"jest": {
"collectCoverageFrom": [
"src/*"
],
"verbose": true,
"clearMocks": true,
"resetMocks": true,
"transform": {
"^.+\\.tsx?$": "ts-jest"
}
}
}