-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.6 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": "open-icecat",
"description": "Icecat API - Find product description with EAN, UPC or GTIN-13 with full typescript support",
"author": "Tjark Kühl",
"license": "MIT",
"version": "1.3.1",
"main": "src/index.ts",
"repository": {
"type": "git",
"url": "https://github.com/Tjark-Kuehl/open-icecat/"
},
"bugs": {
"url": "https://github.com/Tjark-Kuehl/open-icecat/issues"
},
"keywords": [
"icecat",
"typescript",
"ean",
"api",
"upc",
"product",
"information",
"javascript"
],
"scripts": {
"test": "jest",
"testwatch": "jest --watch",
"build": "rollup -c",
"watch": "rollup -cw",
"prepublish": "yarn build",
"lint": "tslint --fix ./src/**/*.ts{,x}",
"update": "yarn upgrade-interactive --latest"
},
"devDependencies": {
"@babel/preset-env": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@types/jest": "^26.0.7",
"jest": "^26.1.0",
"prettier": "^2.0.5",
"rollup": "^2.23.0",
"rollup-plugin-clear": "^2.0.7",
"rollup-plugin-filesize": "^9.0.2",
"rollup-plugin-gzip": "^2.5.0",
"rollup-plugin-terser": "^6.1.0",
"rollup-plugin-typescript2": "^0.27.1",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0",
"tslint-microsoft-contrib": "^6.2.0",
"tslint-plugin-prettier": "^2.3.0",
"typescript": "^3.9.7"
},
"dependencies": {
"ky": "^0.23.0",
"ky-universal": "^0.8.1"
}
}