forked from Shopify/shopify-api-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.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
{
"name": "@shopify/shopify-api",
"version": "2.0.0",
"description": "Shopify API Library for Node - accelerate development with support for authentication, graphql proxy, webhooks",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"prettier": "@shopify/prettier-config",
"scripts": {
"test": "jest",
"build": "tsc",
"lint": "eslint '**/*.{ts,tsx}' --max-warnings 0",
"clean": "rimraf ./dist tsconfig.tsbuildinfo",
"prepublishOnly": "yarn run build",
"preversion": "yarn run test",
"postversion": "git push origin main --follow-tags && echo \"Log in to shipit to deploy version $npm_package_version\""
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Shopify/shopify-node-api.git"
},
"bugs": {
"url": "https://github.com/Shopify/shopify-node-api/issues"
},
"homepage": "https://github.com/Shopify/shopify-node-api",
"author": "Shopify Inc.",
"license": "MIT",
"keywords": [
"shopify",
"node",
"jwt",
"app",
"graphql",
"rest",
"webhook",
"Admin API",
"Storefront API"
],
"dependencies": {
"@shopify/network": "^1.5.1",
"@types/jsonwebtoken": "^8.5.0",
"@types/node-fetch": "^2.5.7",
"@types/supertest": "^2.0.10",
"cookies": "^0.8.0",
"jsonwebtoken": "^8.5.1",
"node-fetch": "^2.6.1",
"tslib": "^2.0.3",
"uuid": "^8.3.1"
},
"devDependencies": {
"@shopify/eslint-plugin": "^39.0.3",
"@shopify/prettier-config": "^1.1.2",
"@types/cookies": "^0.7.5",
"@types/jest": "^26.0.15",
"@types/node": "^14.14.1",
"@types/uuid": "^8.3.0",
"eslint": "^7.30.0",
"eslint-plugin-tsdoc": "^0.2.7",
"express": "^4.17.1",
"jest": "^27.4.3",
"jest-fetch-mock": "^3.0.3",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"supertest": "^6.1.3",
"ts-jest": "^27.1.1",
"typescript": "^3.8.0"
},
"files": [
"dist/*",
"!tsconfig.tsbuildinfo"
]
}