generated from well-known-components/base-ts-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.22 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
{
"name": "@well-known-components/fetch-component",
"version": "2.0.0",
"description": "fetch component",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"test": "jest --forceExit --detectOpenHandles --coverage --verbose",
"lint:fix": "eslint '**/*.{js,ts,tsx}' --quiet --fix",
"lint:check": "eslint '**/*.{js,ts,tsx}' --quiet"
},
"repository": {
"type": "git",
"url": "git+https://github.com/well-known-components/fetch-component.git"
},
"keywords": [],
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/well-known-components/fetch-component/issues"
},
"prettier": {
"printWidth": 120,
"semi": false,
"singleQuote": true,
"trailingComma": "none",
"tabWidth": 2
},
"homepage": "https://github.com/well-known-components/fetch-component#readme",
"devDependencies": {
"@dcl/eslint-config": "^1.1.1",
"@microsoft/api-extractor": "^7.34.7",
"@types/jest": "^28.1.0",
"jest": "^28.1.0",
"jest-fetch-mock": "^3.0.3",
"ts-jest": "^28.0.4",
"typescript": "^5.1.3"
},
"files": [
"dist"
],
"dependencies": {
"@well-known-components/interfaces": "^1.4.1",
"cross-fetch": "^3.1.5"
}
}