-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
57 lines (57 loc) · 1.3 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
{
"name": "google-merchant-feed",
"version": "0.1.0",
"description": "A simple library to generate Google Merchant XML Feed",
"author": "Douglas Gusson",
"license": "MIT",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"keywords": [
"google",
"merchant",
"feed",
"xml",
"product",
"products",
"shopping"
],
"homepage": "https://github.com/douglasgusson/google-merchant-feed/",
"repository": {
"type": "git",
"url": "https://github.com/douglasgusson/google-merchant-feed/"
},
"bugs": {
"url": "https://github.com/douglasgusson/google-merchant-feed/issues"
},
"files": [
"src",
"dist"
],
"engines": {
"node": ">=16"
},
"scripts": {
"prepare": "husky install && npm run build",
"build": "tsc",
"watch": "tsc --watch",
"prettier": "prettier --write .",
"lint": "prettier --check .",
"typecheck": "tsc --noEmit",
"test": "jest ./test",
"test:watch": "jest --watch ./test",
"prebuild": "npm run clean",
"clean": "rm -rf ./dist"
},
"dependencies": {
"xmlbuilder2": "^3.1.1"
},
"devDependencies": {
"@types/jest": "^29.5.5",
"husky": "^8.0.3",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"tslib": "^2.6.2",
"typescript": "^5.2.2"
}
}