-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
92 lines (92 loc) · 2.96 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
{
"name": "tjek-js-sdk",
"description": "Tjek SDK for JavaScript.",
"browserslist": "supports css-grid and supports beacon",
"main": "dist/shopgun-sdk/sgn-sdk.cjs.js",
"browser": "dist/shopgun-sdk/sgn-sdk.js",
"module": "dist/shopgun-sdk/sgn-sdk.es.js",
"jsnext:main": "dist/shopgun-sdk/sgn-sdk.es.js",
"scripts": {
"clean": "rimraf -r dist",
"test": "run-p -l -c test:*",
"test:lint": "eslint lib __tests__",
"test:ci": "jest",
"test:types": "tsc -noEmit",
"build": "node esbuild.mjs build",
"dev": "node esbuild.mjs watch",
"prepublishOnly": "npm run clean && npm run build && npm run test",
"publish": "GOOD=1 node publish-npm.mjs",
"publish-pages": "gh-pages -d examples -e examples && gh-pages -d dist -e dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tjek/tjek-js-sdk.git"
},
"author": "Morten Bo Rønsholdt <[email protected]> (https://tjek.com)",
"contributors": [
{
"name": "Io Klarstrup",
"email": "[email protected]"
}
],
"license": "ISC",
"bugs": {
"url": "https://github.com/tjek/tjek-js-sdk/issues"
},
"homepage": "https://github.com/tjek/tjek-js-sdk#readme",
"dependencies": {
"cross-fetch": "^4.0.0",
"md5": "^2.3.0",
"mustache": "^4.2.0"
},
"devDependencies": {
"@aws-sdk/client-cloudfront": "^3.666.0",
"@aws-sdk/client-s3": "^3.666.0",
"@playwright/browser-chromium": "^1.47.2",
"@types/diff": "^5.2.3",
"@types/jest": "^29.5.13",
"@types/mustache": "^4.2.5",
"@types/nib": "^1.1.2",
"@types/node": "^18.16.12",
"@types/recursive-readdir": "^2.2.4",
"@types/semver": "^7.5.8",
"@types/stylus": "^0.48.43",
"@typescript-eslint/eslint-plugin": "^8.8.1",
"@typescript-eslint/parser": "^8.8.1",
"app-root-path": "^3.1.0",
"chalk": "^5.3.0",
"diff": "^7.0.0",
"esbuild": "^0.24.0",
"esbuild-stylus-loader": "^0.4.3",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-playwright": "^1.6.2",
"file-type": "^19.5.0",
"gh-pages": "^6.1.1",
"glob": "^10.3.10",
"inquirer": "^12.0.0",
"isbinaryfile": "^5.0.2",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jest-esbuild": "^0.3.0",
"jest-playwright-preset": "^4.0.0",
"libnpm": "^3.0.1",
"memfs": "^4.13.0",
"nib": "^1.2.0",
"npm-run-all": "^4.1.5",
"ora": "^8.1.0",
"playwright": "^1.47.2",
"recursive-readdir": "^2.2.3",
"serve": "^14.2.3",
"tar": "^7.4.3",
"tmp-promise": "^3.0.3",
"typescript": "^5.6.2",
"webpack": "^5.95.0"
},
"publishConfig": {
"access": "public"
},
"overrides": {
"jest": "$jest"
}
}