forked from MONEI/Shopify-api-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.37 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
{
"name": "shopify-api-node",
"version": "3.13.4",
"description": "Shopify API bindings for Node.js",
"main": "index.js",
"types": "types/index.d.ts",
"directories": {
"test": "test"
},
"engines": {
"node": ">=10.0.0"
},
"files": [
"resources",
"mixins",
"index.js",
"types/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": "^9.2.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"globals": "^15.2.0",
"husky": "^8.0.1",
"json-bigint": "^1.0.0",
"lint-staged": "^15.2.0",
"mocha": "^8.0.1",
"nock": "^13.0.1",
"prettier": "^3.0.0",
"tsd": "^0.27.0"
},
"scripts": {
"test": "c8 --reporter=lcov --reporter=text mocha",
"test:types": "tsd",
"watch": "mocha -w",
"lint": "eslint . && 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 <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/MONEI/Shopify-api-node/issues"
},
"homepage": "https://github.com/MONEI/Shopify-api-node"
}