-
-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
97 lines (97 loc) · 2.56 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"author": "Ephigenia M. Eichner",
"name": "ikea-availability-checker",
"description": "ikea product in-store availability checker and product search",
"version": "2.0.0-alpha.6",
"preferGlobal": true,
"keywords": [
"availability",
"furniture",
"ikea",
"iows",
"ingka",
"product",
"cli",
"command-line-tool",
"commandline",
"restock",
"search",
"stock",
"warehouse"
],
"license": "MIT",
"maintainer": {
"name": "Marcel Eichner",
"email": "[email protected]"
},
"contributors": [
{
"name": "Marcel Eichner",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/Ephigenia/ikea-availability-checker.git"
},
"funding": {
"url": "http://github.com/sponsors/Ephigenia"
},
"bugs": {
"url": "https://github.com/Ephigenia/ikea-availability-checker/issues"
},
"files": [
"dist"
],
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"bin": {
"ikea-availability": "dist/src/cli/index.js"
},
"scripts": {
"_postinstall": "husky install",
"build": "tsc --module commonjs --project tsconfig.build.json",
"clean": "rimraf dist",
"format": "prettier -w \"{src,test}/**/*.ts\"",
"lint:fix": "npm run lint -- --fix",
"lint": "eslint \"{src,test}/**/*.ts\"",
"postpublish": "pinst --enable",
"prepublishOnly": "pinst --disable",
"prepare": "npm run build",
"semantic-release": "semantic-release",
"start": "node -r ts-node/register src/cli/index.ts",
"tdd": "TZ=Europe/Berlin npm run -s test -- --watch --coverage false",
"test:ci": "npm run -s test",
"test:build": "npm run build && ./dist/index.ts",
"test": "NODE_ENV=test jest src/"
},
"dependencies": {
"@colors/colors": "1.6.0",
"axios": "1.7.8",
"cli-table3": "0.6.5",
"commander": "12.1.0",
"i18n-iso-countries": "7.13.0"
},
"devDependencies": {
"@commitlint/cli": "19.6.0",
"@commitlint/config-angular": "19.6.0",
"@commitlint/config-conventional": "19.6.0",
"@types/jest": "29.5.14",
"@types/node": "22.10.1",
"@typescript-eslint/eslint-plugin": "8.16.0",
"@typescript-eslint/parser": "8.16.0",
"eslint": "9.16.0",
"eslint-plugin-jest": "28.9.0",
"eslint-plugin-prettier": "5.2.1",
"husky": "9.1.7",
"jest": "29.7.0",
"nock": "13.5.6",
"pinst": "3.0.0",
"prettier": "3.4.1",
"rimraf": "6.0.1",
"semantic-release": "24.2.0",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"typescript": "5.7.2"
}
}