-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.25 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
{
"name": "site-utils",
"version": "0.0.1",
"description": "A utility package for fetching and manipulating web pages.",
"main": "dist/index.js",
"type": "commonjs",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/KominoStyle/site-utils.git"
},
"scripts": {
"test:coverage": "jest --coverage --coverageDirectory='coverage'",
"test": "jest --verbose --silent",
"docs": "typedoc src/index.ts"
},
"keywords": [
"web scraping",
"dom manipulation",
"jquery"
],
"author": "!♥KoͨmͧiͭnͥoͤStyle♥!",
"license": "MIT",
"bugs": {
"url": "https://github.com/KominoStyle/site-utils/issues"
},
"homepage": "https://github.com/KominoStyle/site-utils#readme",
"dependencies": {
"axios": "^1.3.5",
"jquery": "^3.6.4",
"jsdom": "^21.1.1"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/jquery": "^3.5.16",
"@types/jsdom": "^21.1.1",
"@types/node": "^18.15.10",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"eslint": "^8.36.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typedoc": "^0.23.28"
}
}