forked from Azure/fetch-event-source
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
28 lines (28 loc) · 875 Bytes
/
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
{
"name": "@microsoft/fetch-event-source",
"version": "2.0.1",
"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.js",
"module": "lib/esm/index.js",
"types": "lib/cjs/index.d.ts",
"sideEffects": false,
"scripts": {
"clean": "rimraf ./lib ./coverage",
"prebuild": "npm run clean",
"build": "tsc && tsc -p tsconfig.esm.json",
"prepublishOnly": "npm run build && npm run test"
},
"devDependencies": {
"@types/jasmine": "^4.3.1",
"rimraf": "^3.0.2",
"source-map-support": "^0.5.19",
"typescript": "^4.2.4"
}
}