-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.34 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": "afacinemas",
"version": "0.2.0",
"license": "MIT",
"author": "Douglas Gusson",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"keywords": [
"afacinemas",
"scraping",
"cinema"
],
"homepage": "https://github.com/douglasgusson/afacinemas-js/",
"repository": {
"type": "git",
"url": "https://github.com/douglasgusson/afacinemas-js/"
},
"bugs": {
"url": "https://github.com/douglasgusson/afacinemas-js/issues"
},
"files": [
"src",
"dist"
],
"engines": {
"node": ">=12"
},
"scripts": {
"prepare": "husky install && npm run build",
"build": "tsc",
"prettier": "prettier --write .",
"lint": "prettier --check . && eslint . --ext .ts",
"typecheck": "tsc --noEmit",
"test": "jest ./test",
"test:watch": "jest --watch ./test",
"prebuild": "npm run clean",
"clean": "rm -rf ./dist"
},
"dependencies": {
"axios": "^1.5.1",
"axios-cache-interceptor": "^1.3.1",
"cheerio": "^1.0.0-rc.12"
},
"devDependencies": {
"@types/jest": "^29.5.5",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"cspell": "^7.3.7",
"eslint": "^8.50.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"tslib": "^2.6.2",
"typescript": "^5.2.2"
}
}