-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.75 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.75 KB
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
{
"name": "@shopify/shopify-function-test-helpers",
"version": "1.0.0",
"description": "A JavaScript library for testing Shopify Functions WASM modules, with complete test-app examples",
"main": "dist/wasm-testing-helpers.js",
"types": "dist/wasm-testing-helpers.d.ts",
"type": "module",
"exports": {
".": {
"import": "./dist/wasm-testing-helpers.js",
"types": "./dist/wasm-testing-helpers.d.ts"
}
},
"files": [
"dist/"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:examples": "pnpm --filter cart-validation-js-tests test && pnpm --filter discount-function-rs-tests test",
"lint": "eslint src/ test/",
"lint:fix": "eslint src/ test/ --fix",
"prepublishOnly": "pnpm run build && pnpm run test && pnpm run lint",
"release": "pnpm run build && changeset publish"
},
"dependencies": {
"core-js": "^3.46.0",
"execa": "^7.2.0",
"graphql": "^16.11.0"
},
"devDependencies": {
"@changesets/cli": "^2.29.7",
"@shopify/eslint-plugin": "^50.0.0",
"@types/node": "^22.18.6",
"@typescript-eslint/eslint-plugin": "^8.46.2",
"@typescript-eslint/parser": "^8.46.2",
"eslint": "^9.38.0",
"prettier": "^3.6.2",
"typescript": "^5.6.3",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=20.0.0"
},
"author": "lopert",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Shopify/shopify-function-test-helpers.git"
},
"bugs": {
"url": "https://github.com/Shopify/shopify-function-test-helpers/issues"
},
"homepage": "https://github.com/Shopify/shopify-function-test-helpers#readme"
}