-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.24 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
{
"name": "ogp-fetcher",
"version": "1.4.6",
"description": "A simple library for OGP fetching",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"dependencies": {
"axios": "^0.23.0",
"jsdom": "^18.0.0"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/jsdom": "^16.2.13",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.0.1",
"jest": "^27.2.5",
"ts-jest": "^27.0.6",
"typescript": "^4.4.4"
},
"scripts": {
"test": "jest",
"build": "tsc",
"lint": "eslint --fix 'src/**/*.ts'"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsconfig": "tsconfig.json"
}
},
"testMatch": [
"**/test/**/*.test.ts"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/TakahiroHimi/ogp-fetcher.git"
},
"keywords": [
"ogp",
"fetch"
],
"author": "TakahiroHimi",
"license": "MIT",
"bugs": {
"url": "https://github.com/TakahiroHimi/ogp-fetcher/issues"
},
"homepage": "https://github.com/TakahiroHimi/ogp-fetcher#readme"
}