-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.45 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
{
"name": "trackpurchase",
"version": "2.0.0",
"main": "dist/index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/code-yeongyu/TrackPurchase.git"
},
"keywords": [
"crawler",
"web scraper",
"web automation",
"puppeteer"
],
"description": "단 몇줄의 코드로 다양한 쇼핑 플랫폼에서 결제 내역을 긁어오자!",
"files": [
"dist"
],
"jest": {
"preset": "jest-puppeteer",
"coveragePathIgnorePatterns": [
"dist/",
"elementParser.ts",
"pageInteractor.ts"
],
"testPathIgnorePatterns": [
"dist/"
]
},
"scripts": {
"test": "jest .",
"test:cov": "jest --coverage --collectCoverageFrom='src/**/*.{js,jsx,ts}'",
"build": "tsc -p ."
},
"dependencies": {
"axios": "^0.25.0",
"puppeteer": "^12.0.1"
},
"devDependencies": {
"@babel/core": "^7.16.5",
"@babel/plugin-transform-runtime": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"@babel/preset-typescript": "^7.16.5",
"@babel/runtime": "^7.16.5",
"@types/axios": "^0.14.0",
"@types/expect-puppeteer": "^4.4.7",
"@types/jest": "^27.0.3",
"@types/jest-environment-puppeteer": "^4.4.1",
"babel": "^6.23.0",
"babel-jest": "^27.4.5",
"jest": "^27.4.5",
"jest-puppeteer": "^6.0.3",
"nodemon": "^2.0.15",
"puppeteer-to-istanbul": "^1.4.0",
"ts-node": "^10.4.0",
"tsc": "^2.0.3",
"typescript": "^4.5.4"
}
}