-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.23 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
{
"name": "request",
"description": "Easy-to-fetch HTTP client for the browser and NodeJS.",
"repository": "https://github.com/o0y0o/request",
"author": "Jason Chung <shiningjason1989@gmail.com>",
"license": "MIT",
"private": true,
"keywords": [
"fetch",
"http",
"https",
"http-client",
"http-request",
"network",
"request",
"web",
"browser",
"nodejs"
],
"scripts": {
"ncu": "ncu && lerna exec ncu",
"format": "prettier --write '{*,src/**/*}.js'",
"lint": "eslint '{*,src/**/*}.js'",
"test": "BABEL_ENV=test mocha -r @babel/register src/**/*.test.js",
"build": "rollup -c --bundleConfigAsCjs",
"ver": "lerna version --no-push && git tag | xargs git tag -d",
"pkg": "lerna publish from-package --yes"
},
"devDependencies": {
"@0y0/babel-preset-vanilla": "^1.1.6",
"@0y0/eslint-config-vanilla": "^1.4.0",
"@babel/register": "^7.18.9",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-inject": "^5.0.3",
"eslint": "^8.33.0",
"fetch-mock": "^9.11.0",
"form-data": "^4.0.0",
"lerna": "^6.4.1",
"mocha": "^10.2.0",
"node-fetch": "^2.6.9",
"prettier": "^2.8.3",
"rollup": "^3.12.0",
"rollup-plugin-terser": "^7.0.2"
}
}