-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
37 lines (37 loc) · 879 Bytes
/
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
{
"name": "valid-shopify-request",
"version": "1.0.1",
"description": "Validate the HMAC signature Shopify sends to make sure requests are authentic!",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "tsc && ava",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "https://github.com/DanWebb/valid-shopify-request.git"
},
"keywords": [
"shopify",
"hmac"
],
"author": "Dan Webb <[email protected]> (https://danwebb.co)",
"license": "MIT",
"bugs": {
"url": "https://github.com/DanWebb/valid-shopify-request/issues"
},
"devDependencies": {
"@types/node": "10.5.2",
"ava": "0.25.0",
"get-port": "3.2.0",
"koa": "2.5.2",
"supertest": "3.1.0",
"tslint": "5.10.0",
"tslint-xo": "0.8.0",
"typescript": "2.9.2"
},
"dependencies": {
"raw-body": "2.3.3"
}
}