-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
73 lines (73 loc) · 1.84 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
{
"name": "price-finder",
"description": "Finds the prices of retail items online",
"version": "6.0.0-alpha.3",
"engines": {
"node": ">=16"
},
"author": {
"name": "Dylan Smith"
},
"repository": {
"type": "git",
"url": "https://github.com/dylants/price-finder.git"
},
"bugs": {
"url": "https://github.com/dylants/price-finder/issues"
},
"homepage": "https://github.com/dylants/price-finder",
"license": "MIT",
"keywords": [
"price",
"finder",
"scan",
"scrape",
"store",
"cost",
"product",
"retail",
"item",
"amazon"
],
"main": "./build/PriceFinder.js",
"types": "./types/PriceFinder.d.ts",
"scripts": {
"build:ts": "tsc -p tsconfig-build.json",
"build": "yarn clean:build && yarn build:ts",
"check-types": "tsc --noemit",
"clean:build": "rimraf build coverage",
"clean:dependencies": "rimraf node_modules",
"clean": "yarn clean:build && yarn clean:dependencies",
"lint": "yarn rome:check && yarn rome:format && yarn check-types",
"rome:check": "yarn rome check src/ test/",
"rome:format": "yarn rome format src/ test/",
"test": "jest test/unit",
"test:e2e": "jest test/e2e",
"test:e2e:single": "jest $1",
"test:watch": "yarn test --watch"
},
"dependencies": {
"accounting": "0.4.1",
"async": "3.2.4",
"cheerio": "1.0.0-rc.12",
"lodash": "4.17.21",
"pino": "8.7.0",
"superagent": "8.0.3"
},
"devDependencies": {
"@tsconfig/node18": "1.0.1",
"@types/accounting": "0.4.2",
"@types/async": "3.2.15",
"@types/jest": "29.2.3",
"@types/lodash": "4.14.190",
"@types/node": "18.11.9",
"@types/superagent": "4.1.16",
"jest": "29.3.1",
"nock": "13.2.9",
"rimraf": "5.0.1",
"rome": "12.1.3",
"ts-jest": "29.0.3",
"ts-node": "10.9.1",
"typescript": "4.9.3"
}
}