Skip to content

Commit bb9c96d

Browse files
committed
Fix indention
Signed-off-by: Richie Bendall <[email protected]>
1 parent c167190 commit bb9c96d

File tree

1 file changed

+131
-131
lines changed

1 file changed

+131
-131
lines changed

package.json

Lines changed: 131 additions & 131 deletions
Original file line numberDiff line numberDiff line change
@@ -1,133 +1,133 @@
11
{
2-
"name": "node-fetch",
3-
"version": "3.0.0-beta.4",
4-
"description": "A light-weight module that brings window.fetch to node.js",
5-
"main": "./dist/dist-src",
6-
"files": [
7-
"src",
8-
"dist",
9-
"*.d.ts"
10-
],
11-
"engines": {
12-
"node": ">=10.0.0"
13-
},
14-
"scripts": {
15-
"build": "pika build --out dist/",
16-
"prepublishOnly": "npm run build",
17-
"test": "cross-env BABEL_ENV=test mocha --require @babel/register --throw-deprecation test/*.js",
18-
"report": "cross-env BABEL_ENV=coverage nyc --reporter lcov --reporter text mocha -R spec test/*.js",
19-
"coverage": "cross-env BABEL_ENV=coverage nyc --reporter json --reporter text mocha -R spec test/*.js && codecov -f coverage/coverage-final.json",
20-
"lint": "xo"
21-
},
22-
"repository": {
23-
"type": "git",
24-
"url": "https://github.com/node-fetch/node-fetch.git"
25-
},
26-
"keywords": [
27-
"fetch",
28-
"http",
29-
"promise"
30-
],
31-
"author": "David Frank",
32-
"license": "MIT",
33-
"bugs": {
34-
"url": "https://github.com/node-fetch/node-fetch/issues"
35-
},
36-
"homepage": "https://github.com/node-fetch/node-fetch",
37-
"funding": {
38-
"type": "opencollective",
39-
"url": "https://opencollective.com/node-fetch"
40-
},
41-
"devDependencies": {
42-
"@babel/core": "^7.9.0",
43-
"@babel/preset-env": "^7.9.0",
44-
"@babel/register": "^7.9.0",
45-
"@pika/pack": "^0.5.0",
46-
"@pika/plugin-standard-pkg": "^0.9.2",
47-
"abort-controller": "^3.0.0",
48-
"abortcontroller-polyfill": "^1.4.0",
49-
"chai": "^4.2.0",
50-
"chai-as-promised": "^7.1.1",
51-
"chai-iterator": "^3.0.2",
52-
"chai-string": "^1.5.0",
53-
"codecov": "^3.6.5",
54-
"cross-env": "^7.0.2",
55-
"form-data": "^3.0.0",
56-
"mocha": "^7.1.1",
57-
"nyc": "^15.0.0",
58-
"parted": "^0.1.1",
59-
"promise": "^8.1.0",
60-
"resumer": "0.0.0",
61-
"string-to-arraybuffer": "^1.0.2",
62-
"xo": "^0.28.1"
63-
},
64-
"dependencies": {
65-
"data-uri-to-buffer": "^3.0.0",
66-
"fetch-blob": "^1.0.5"
67-
},
68-
"@pika/pack": {
69-
"pipeline": [
70-
[
71-
"@pika/plugin-standard-pkg"
72-
]
73-
]
74-
},
75-
"xo": {
76-
"envs": [
77-
"node",
78-
"browser"
79-
],
80-
"rules": {
81-
"complexity": 0,
82-
"promise/prefer-await-to-then": 0,
83-
"no-mixed-operators": 0,
84-
"no-negated-condition": 0,
85-
"unicorn/prevent-abbreviations": 0
86-
},
87-
"ignores": [
88-
"dist",
89-
"index.d.ts"
90-
],
91-
"overrides": [
92-
{
93-
"files": "test/**/*.js",
94-
"envs": [
95-
"node",
96-
"mocha"
97-
],
98-
"rules": {
99-
"max-nested-callbacks": 0,
100-
"no-unused-expressions": 0,
101-
"new-cap": 0,
102-
"guard-for-in": 0
103-
}
104-
},
105-
{
106-
"files": "example.js",
107-
"rules": {
108-
"import/no-extraneous-dependencies": 0
109-
}
110-
}
111-
]
112-
},
113-
"babel": {
114-
"presets": [
115-
[
116-
"@babel/preset-env",
117-
{
118-
"targets": {
119-
"node": true
120-
}
121-
}
122-
]
123-
]
124-
},
125-
"nyc": {
126-
"require": [
127-
"@babel/register"
128-
],
129-
"sourceMap": false,
130-
"instrument": false
131-
},
132-
"runkitExampleFilename": "example.js"
2+
"name": "node-fetch",
3+
"version": "3.0.0-beta.4",
4+
"description": "A light-weight module that brings window.fetch to node.js",
5+
"main": "./dist/dist-src",
6+
"files": [
7+
"src",
8+
"dist",
9+
"*.d.ts"
10+
],
11+
"engines": {
12+
"node": ">=10.0.0"
13+
},
14+
"scripts": {
15+
"build": "pika build --out dist/",
16+
"prepublishOnly": "npm run build",
17+
"test": "cross-env BABEL_ENV=test mocha --require @babel/register --throw-deprecation test/*.js",
18+
"report": "cross-env BABEL_ENV=coverage nyc --reporter lcov --reporter text mocha -R spec test/*.js",
19+
"coverage": "cross-env BABEL_ENV=coverage nyc --reporter json --reporter text mocha -R spec test/*.js && codecov -f coverage/coverage-final.json",
20+
"lint": "xo"
21+
},
22+
"repository": {
23+
"type": "git",
24+
"url": "https://github.com/node-fetch/node-fetch.git"
25+
},
26+
"keywords": [
27+
"fetch",
28+
"http",
29+
"promise"
30+
],
31+
"author": "David Frank",
32+
"license": "MIT",
33+
"bugs": {
34+
"url": "https://github.com/node-fetch/node-fetch/issues"
35+
},
36+
"homepage": "https://github.com/node-fetch/node-fetch",
37+
"funding": {
38+
"type": "opencollective",
39+
"url": "https://opencollective.com/node-fetch"
40+
},
41+
"devDependencies": {
42+
"@babel/core": "^7.9.0",
43+
"@babel/preset-env": "^7.9.0",
44+
"@babel/register": "^7.9.0",
45+
"@pika/pack": "^0.5.0",
46+
"@pika/plugin-standard-pkg": "^0.9.2",
47+
"abort-controller": "^3.0.0",
48+
"abortcontroller-polyfill": "^1.4.0",
49+
"chai": "^4.2.0",
50+
"chai-as-promised": "^7.1.1",
51+
"chai-iterator": "^3.0.2",
52+
"chai-string": "^1.5.0",
53+
"codecov": "^3.6.5",
54+
"cross-env": "^7.0.2",
55+
"form-data": "^3.0.0",
56+
"mocha": "^7.1.1",
57+
"nyc": "^15.0.0",
58+
"parted": "^0.1.1",
59+
"promise": "^8.1.0",
60+
"resumer": "0.0.0",
61+
"string-to-arraybuffer": "^1.0.2",
62+
"xo": "^0.28.1"
63+
},
64+
"dependencies": {
65+
"data-uri-to-buffer": "^3.0.0",
66+
"fetch-blob": "^1.0.5"
67+
},
68+
"@pika/pack": {
69+
"pipeline": [
70+
[
71+
"@pika/plugin-standard-pkg"
72+
]
73+
]
74+
},
75+
"xo": {
76+
"envs": [
77+
"node",
78+
"browser"
79+
],
80+
"rules": {
81+
"complexity": 0,
82+
"promise/prefer-await-to-then": 0,
83+
"no-mixed-operators": 0,
84+
"no-negated-condition": 0,
85+
"unicorn/prevent-abbreviations": 0
86+
},
87+
"ignores": [
88+
"dist",
89+
"index.d.ts"
90+
],
91+
"overrides": [
92+
{
93+
"files": "test/**/*.js",
94+
"envs": [
95+
"node",
96+
"mocha"
97+
],
98+
"rules": {
99+
"max-nested-callbacks": 0,
100+
"no-unused-expressions": 0,
101+
"new-cap": 0,
102+
"guard-for-in": 0
103+
}
104+
},
105+
{
106+
"files": "example.js",
107+
"rules": {
108+
"import/no-extraneous-dependencies": 0
109+
}
110+
}
111+
]
112+
},
113+
"babel": {
114+
"presets": [
115+
[
116+
"@babel/preset-env",
117+
{
118+
"targets": {
119+
"node": true
120+
}
121+
}
122+
]
123+
]
124+
},
125+
"nyc": {
126+
"require": [
127+
"@babel/register"
128+
],
129+
"sourceMap": false,
130+
"instrument": false
131+
},
132+
"runkitExampleFilename": "example.js"
133133
}

0 commit comments

Comments
 (0)