-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.38 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
{
"name": "@chile-sh/getonbrd-scraper",
"types": "lib/index.d.ts",
"main": "lib/index.js",
"version": "3.1.0",
"repository": "[email protected]:chile-sh/getonbrd-scraper.git",
"author": "mallendeo",
"license": "MIT",
"scripts": {
"lint": "eslint 'src/**/*.@(ts|js|tsx|jsx)'",
"build": "rm -rf lib && tsc",
"test": "yarn lint && jest",
"release": "np",
"version": "yarn build && git add lib"
},
"files": [
"lib"
],
"husky": {
"hooks": {
"pre-push": "npm test"
}
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
}
},
"dependencies": {
"cheerio": "^1.0.0-rc.3",
"dotenv": "^7.0.0",
"got": "^9.6.0",
"lodash": "^4.17.11",
"qs": "^6.7.0",
"sanitize-html": "^1.20.1"
},
"devDependencies": {
"@chile-sh/eslint-config-ts": "^2.2.2",
"@types/cheerio": "^0.22.11",
"@types/got": "^9.4.4",
"@types/jest": "^24.0.13",
"@types/lodash": "^4.14.126",
"@types/qs": "^6.5.3",
"@types/sanitize-html": "^1.18.3",
"@typescript-eslint/eslint-plugin": "^1.7.0",
"@typescript-eslint/parser": "^1.7.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.2.0",
"eslint-plugin-prettier": "^3.0.1",
"husky": "^2.1.0",
"is-url-superb": "^3.0.0",
"jest": "^24.8.0",
"np": "^5.0.1",
"prettier": "^1.17.1",
"ts-jest": "^24.0.2",
"typescript": "^3.4.5"
}
}