-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
56 lines (56 loc) · 1.39 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
{
"name": "migros-api-wrapper",
"version": "1.1.17",
"description": "Making the api of migros more accessible to the public.",
"keywords": [
"migros",
"migusto",
"cumulus",
"supermarket",
"leshop",
"migros-api"
],
"main": "dist/index.js",
"typings": "./dist/index.d.ts",
"files": [
"/dist",
"/src"
],
"scripts": {
"test": "jest",
"lint": "eslint . --ext .ts",
"lint-and-fix": "eslint . --ext .ts --fix",
"build": "rimraf ./dist && tsc",
"start": "npm run build && node dist/index.js",
"start:ts": "ts-node ./src/index.ts",
"start:dev": "ts-node ./src/dev.ts",
"prepublish": "npm run build"
},
"author": "aliyss",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/aliyss/migros-api-wrapper.git"
},
"homepage": "https://github.com/aliyssium/migros-api-wrapper#readme",
"devDependencies": {
"@types/jest": "^29.1.2",
"@types/node": "^18.8.3",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"eslint": "^8.25.0",
"eslint-plugin-no-loops": "^0.3.0",
"jest": "^29.1.2",
"nodemon": "^2.0.20",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"dependencies": {
"cheerio": "^1.0.0-rc.12",
"dotenv": "^16.4.5",
"pino": "^8.6.1",
"pino-pretty": "^9.1.1"
}
}