-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
57 lines (57 loc) · 1.44 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
{
"name": "serp-parser",
"version": "1.5.0",
"description": "SERP Parser for Google",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest --coverage",
"test:watch": "jest --watch",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint .",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"files": [
"lib/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/zlurad/serp-parser.git"
},
"keywords": [
"SERP",
"Google",
"Parser"
],
"author": "Zlurad",
"license": "MIT",
"bugs": {
"url": "https://github.com/zlurad/serp-parser/issues"
},
"homepage": "https://github.com/zlurad/serp-parser#readme",
"devDependencies": {
"@tsconfig/recommended": "^1.0.1",
"@types/fs-extra": "^9.0.11",
"@types/jest": "^26.0.23",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^24.3.6",
"fs-extra": "^10.0.0",
"jest": "^27.0.5",
"prettier": "^2.3.0",
"ts-jest": "^27.0.3",
"ts-node": "^10.0.0",
"typescript": "^4.3.4"
},
"dependencies": {
"cheerio": "^1.0.0-rc.9",
"tslib": "^2.2.0"
}
}