forked from Azure/fetch-event-source
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
61 lines (61 loc) · 1.54 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
{
"name": "@microsoft/fetch-event-source",
"version": "3.0.0",
"description": "A better API for making Event Source requests, with all the features of fetch()",
"homepage": "https://github.com/Azure/fetch-event-source#readme",
"repository": "github:Azure/fetch-event-source",
"bugs": {
"url": "https://github.com/Azure/fetch-event-source/issues"
},
"author": "Microsoft",
"license": "MIT",
"main": "lib/cjs/index.cjs",
"module": "lib/esm/index.js",
"types": "lib/cjs/index.d.ts",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"types": "./lib/esm/index.d.ts",
"require": "./lib/cjs/index.cjs",
"default": "./lib/esm/index.js"
},
"./package.json": "./package.json",
"./parse": {
"types": "./lib/esm/parse.d.ts",
"require": "./lib/cjs/parse.cjs",
"default": "./lib/esm/parse.js"
}
},
"typesVersions": {
"*": {
"parse": [
"lib/esm/parse.d.ts"
]
}
},
"files": [
"CHANGELOG.md",
"lib",
"tsconfig.esm.json"
],
"engines": {
"node": ">=16.15"
},
"scripts": {
"clean": "rimraf ./lib ./coverage",
"prebuild": "npm run clean",
"build": "tsc-multi && tsc -p tsconfig.esm.json",
"test": "nyc jasmine --config=jasmine.json",
"prepublishOnly": "npm run build && npm run test"
},
"devDependencies": {
"@types/jasmine": "^3.6.9",
"jasmine": "^3.7.0",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"source-map-support": "^0.5.19",
"typescript": "^4.9.4",
"tsc-multi": "^0.6.1"
}
}