-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
39 lines (39 loc) · 1.08 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
{
"name": "shopify-hmac-validation",
"version": "1.1.0",
"description": "Validation for Shopify HMAC on app installation steps.",
"main": "index.js",
"scripts": {
"test": "mocha ./index.test.js",
"codecov": "istanbul cover ./node_modules/mocha/bin/_mocha ./index.test.js --report lcovonly -- -R spec && codecov -t 8a790055-597f-49e6-af81-ccbee1f0f1de"
},
"husky": {
"hooks": {
"pre-commit": "npm test",
"pre-push": "npm test"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/leighs-hammer/shopify-hmac-validation.git"
},
"author": "Leigh Barnes",
"license": "MIT",
"bugs": {
"url": "https://github.com/leighs-hammer/shopify-hmac-validation/issues"
},
"homepage": "https://github.com/leighs-hammer/shopify-hmac-validation#readme",
"devDependencies": {
"chai": "^4.2.0",
"codecov": "^3.2.0",
"coveralls": "^3.0.2",
"husky": "^1.3.0",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.3.0",
"nodemon": "^1.18.9"
},
"dependencies": {
"query-string": "^6.2.0"
}
}