-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.62 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
{
"name": "@hubble/request",
"version": "2.2.0",
"description": "A simple, universal, no-frills networking library",
"main": "dist/index.js",
"repository": "https://github.com/HubbleHQ/request",
"author": "HubbleHQ Engineering <[email protected]>",
"license": "MIT",
"scripts": {
"build": "babel src -d dist",
"docs:build": "jsdoc -c jsdoc-conf.json",
"docs:publish": "yarn docs:build && gh-pages -d ./docs",
"docs:start": "serve ./docs",
"format": "prettier \"./src/**/*.{js,json}\" --write",
"lint": "yarn lint:eslint && yarn lint:format",
"lint:eslint": "eslint .",
"lint:format": "prettier \"./src/**/*.{js,json}\" --check",
"start": "yarn build --watch",
"test": "jest"
},
"dependencies": {
"isomorphic-unfetch": "4.0.0"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"eslint": "^7.10.0",
"gh-pages": "^3.1.0",
"jest": "^26.5.2",
"jest-fetch-mock": "^3.0.3",
"jest-junit": "^12.0.0",
"jsdoc": "^3.6.6",
"jsdoc-template": "git+https://github.com/braintree/jsdoc-template.git",
"lint-staged": "^10.4.0",
"prettier": "^2.1.2",
"regenerator-runtime": "^0.13.7",
"serve": "^11.3.0"
},
"engines": {
"node": ">=20.5.1",
"npm": "^6.13.4",
"yarn": "^1.21.1"
},
"jest": {
"automock": false,
"reporters": [
"default",
"jest-junit"
],
"roots": [
"<rootDir>/src/"
],
"setupFilesAfterEnv": [
"./.jest/setup.js"
]
},
"lint-staged": {
"**/*.js": [
"prettier --write",
"eslint"
]
}
}