forked from LarsEllefsen/vinmonopolet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.97 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": "vinmonopolet-ts",
"description": "Extracts information on products, categories and stores from Vinmonopolet",
"version": "5.1.0",
"keywords": [
"vinmonopolet",
"beer",
"wine",
"products",
"stores"
],
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"scripts": {
"clean": "rimraf coverage .nyc_output",
"coverage": "nyc --reporter=html --reporter=lcov --reporter=text _mocha",
"lint": "eslint .",
"test": "ts-mocha test/**/*.test.ts",
"build": "rimraf dist && npm run build:cjs && npm run build:esm",
"build:cjs": "tsc",
"build:esm": "tsc --outDir dist/esm --module esnext --target esnext"
},
"engines": {
"node": ">=14"
},
"repository": {
"type": "git",
"url": "git@github.com:LarsEllefsen/vinmonopolet.git"
},
"author": "Espen Hovlandsdal <espen@hovlandsdal.com>",
"contributors": [
{
"name": "Lars Moe Ellefsen",
"email": "larsmoeellefsen@gmail.com"
}
],
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.18.5",
"@types/chai": "^4.3.1",
"@types/expect": "^24.3.0",
"@types/jsdom": "^21.1.7",
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.42",
"@types/through2": "^2.0.36",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"chai": "^4.3.6",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"lodash": "^4.17.5",
"mocha": "^10.0.0",
"nock": "^9.2.3",
"prettier": "^2.6.2",
"rimraf": "^2.6.2",
"ts-mocha": "^10.0.0",
"ts-node": "^10.8.1"
},
"dependencies": {
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"csv-parser": "^1.12.0",
"fetch-cookie": "^2.0.5",
"jsdom": "^25.0.0",
"node-fetch": "^2.0.0",
"promise-map-limit": "^1.0.0",
"query-string": "^4.3.4",
"reflect-metadata": "^0.1.13",
"typescript": "^4.7.3"
}
}