This repository has been archived by the owner on Jan 30, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 63
/
package.json
60 lines (60 loc) · 1.67 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
{
"name": "@shopify/koa-shopify-auth",
"version": "5.0.3",
"license": "MIT",
"description": "Middleware to authenticate a Koa application with Shopify",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "eslint",
"prepare": "husky install",
"prepublishOnly": "yarn run build",
"test": "jest",
"preversion": "yarn test",
"postversion": "git push origin master --follow-tags && echo \"Log in to shipit to deploy version $npm_package_version\""
},
"publishConfig": {
"access": "public"
},
"author": "Shopify Inc.",
"repository": {
"type": "git",
"url": "git+https://github.com/Shopify/koa-shopify-auth.git"
},
"bugs": {
"url": "https://github.com/Shopify/koa-shopify-auth/issues"
},
"homepage": "https://github.com/Shopify/koa-shopify-auth/blob/master/README.md",
"dependencies": {
"@shopify/network": "^1.5.0",
"@shopify/shopify-api": "^2.1.0",
"koa-compose": ">=3.0.0 <4.0.0",
"nonce": "^1.0.4",
"tslib": "^1.9.3"
},
"devDependencies": {
"@shopify/jest-dom-mocks": "^2.9.1",
"@shopify/jest-koa-mocks": "^2.2.3",
"@shopify/prettier-config": "^1.1.2",
"@types/jest": "^26.0.20",
"@types/koa": "^2.0.0",
"@types/koa-compose": "*",
"@types/node": "^17.0.21",
"babel-preset-shopify": "^21.0.0",
"eslint": "^7.8.1",
"husky": "^7.0.4",
"jest": "^26.4.2",
"koa": "^2.5.0",
"node-fetch": "^2.6.0",
"prettier": "^2.5.1",
"pretty-quick": "^3.1.3",
"typescript": "^4.0.2"
},
"prettier": "@shopify/prettier-config",
"sideEffects": false,
"files": [
"dist/*",
"!tsconfig.tsbuildinfo"
]
}