This repository has been archived by the owner on Jun 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.17 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "mdn-scraper",
"version": "1.0.5",
"description": "Query the MDN website with a search term.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/SemperFortis/MDN-Scraper.git"
},
"keywords": [
"mdn",
"mdn-documentation",
"mdn-scraper",
"scraper"
],
"author": "SemperFortis",
"contributors": [
"Shane4368"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/SemperFortis/MDN-Scraper/issues"
},
"homepage": "https://github.com/SemperFortis/MDN-Scraper/#readme",
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"build": "tsc",
"deploy": "npm run build && npm run start",
"dev": "ts-node src/index.ts",
"eslint": "eslint --fix . --ext ts",
"start": "node ./dist/src/index.js",
"test": "jest",
"watch": "tsc -w",
"prepare": "npm run build",
"prettier": "prettier --write .",
"commit": "cz"
},
"lint-staged": {
"**/*.ts": [
"yarn eslint",
"yarn prettier"
]
},
"dependencies": {
"axios": "^0.26.0"
},
"devDependencies": {
"@babel/core": "^7.14.8",
"@babel/preset-env": "^7.14.8",
"@babel/preset-typescript": "^7.14.5",
"@commitlint/config-conventional": "^16.0.0",
"@types/jest": "^27.0.2",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"babel-jest": "^27.0.6",
"commitlint": "^16.1.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.1",
"jest": "^27.0.6",
"lint-staged": "^12.0.2",
"prettier": "^2.3.2",
"ts-node": "^10.1.0",
"typescript": "^4.5.5"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}