forked from MONEI/Shopify-api-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.28 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
{
"name": "shopify-api-node",
"version": "3.8.0",
"description": "Shopify API bindings for Node.js",
"main": "index.js",
"directories": {
"test": "test"
},
"engines": {
"node": ">=10.0.0"
},
"files": [
"resources",
"mixins",
"index.js",
"index.d.ts"
],
"dependencies": {
"got": "^11.1.4",
"lodash": "^4.17.10",
"qs": "^6.5.2",
"stopcock": "^1.0.0"
},
"devDependencies": {
"c8": "^7.3.0",
"chai": "^4.1.2",
"eslint": "^8.0.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.2",
"json-bigint": "^1.0.0",
"lint-staged": "^11.0.0",
"mocha": "^8.0.1",
"nock": "^13.0.1",
"prettier": "^2.0.2"
},
"scripts": {
"test": "c8 --reporter=lcov --reporter=text mocha",
"watch": "mocha -w",
"lint": "eslint --ignore-path .gitignore . && prettier --check --ignore-path .gitignore \"**/*.{json,md,ts,yaml,yml}\"",
"prepare": "husky install"
},
"repository": "MONEI/Shopify-api-node",
"keywords": [
"Shopify",
"API",
"Client"
],
"author": "alexandre saiz <a@alexandresaiz.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/MONEI/Shopify-api-node/issues"
},
"homepage": "https://github.com/MONEI/Shopify-api-node"
}