-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
59 lines (59 loc) · 1.45 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": "sync-fetch",
"version": "0.5.2",
"description": "Synchronous version of the Fetch API",
"main": "index.js",
"browser": "browser.js",
"jsdelivr": "bundle.js",
"unpkg": "bundle.js",
"files": [
"index.js",
"worker.js",
"shared.js",
"browser.js",
"bundle.js"
],
"scripts": {
"lint": "standard",
"test": "mocha --throw-deprecation test/spec.js",
"build": "browserify -r .:sync-fetch -o bundle.js",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md",
"preversion": "npm run lint && npm run test",
"version": "npm run changelog",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/larsgw/sync-fetch.git"
},
"keywords": [
"fetch",
"sync"
],
"author": "Lars Willighagen",
"license": "MIT",
"bugs": {
"url": "https://github.com/larsgw/sync-fetch/issues"
},
"homepage": "https://github.com/larsgw/sync-fetch#readme",
"dependencies": {
"node-fetch": "^2.6.1"
},
"devDependencies": {
"@ungap/url-search-params": "^0.2.2",
"browserify": "^17.0.0",
"chai": "^4.2.0",
"chai-iterator": "^3.0.2",
"chai-string": "^1.5.0",
"conventional-changelog-cli": "^3.0.0",
"form-data": "^4.0.0",
"mocha": "^10.0.0",
"parted": "^0.1.1",
"resumer": "0.0.0",
"standard": "^17.0.0",
"string-to-arraybuffer": "^1.0.2"
},
"engines": {
"node": ">=14"
}
}