-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
74 lines (74 loc) · 1.75 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
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "gretchen",
"version": "1.2.0",
"description": "Making fetch happen in Typescript.",
"source": "index.ts",
"main": "dist/gretchen.js",
"modern": "dist/gretchen.modern.js",
"module": "dist/gretchen.esm.js",
"unpkg": "dist/gretchen.iife.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "microbundle",
"watch": "microbundle watch",
"test": "node test",
"lint": "npx eslint .",
"format": "npx eslint --fix . && npx prettier --write .",
"prepare": "npx husky install && npx commitizen init cz-conventional-changelog --save-dev --save-exact"
},
"keywords": [
"fetch",
"fetching",
"http",
"https",
"request",
"requests",
"get",
"url",
"ajax",
"api",
"got",
"axios",
"node-fetch",
"typescript",
"tiny",
"small",
"micro",
"microjs"
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/truework/gretchen.git"
},
"author": "truework",
"license": "MIT",
"bugs": {
"url": "https://github.com/truework/gretchen/issues"
},
"homepage": "https://github.com/truework/gretchen#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"baretest": "^2.0.0",
"commitizen": "^4.2.4",
"core-js": "^3.7.0",
"cross-fetch": "^3.0.4",
"cz-conventional-changelog": "^3.3.0",
"esbuild-register": "^2.6.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"husky": "^6.0.0",
"microbundle": "^0.13.3",
"prettier": "2.8.4",
"semantic-release": "^17.2.2",
"typescript": "^4.3.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}