forked from MONEI/Shopify-api-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.13 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": "2.23.0",
"description": "Shopify API bindings for Node.js",
"main": "index.js",
"directories": {
"test": "test"
},
"engines": {
"node": ">=4.0.0"
},
"files": [
"resources",
"mixins",
"index.js",
"index.d.ts"
],
"dependencies": {
"got": "^8.3.1",
"lodash": "^4.17.10",
"qs": "^6.5.2",
"stopcock": "^1.0.0"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^4.19.1",
"istanbul": "^0.4.5",
"mocha": "^5.1.1",
"nock": "^9.2.5",
"pre-commit": "^1.2.2"
},
"scripts": {
"test-travis": "npm run lint && istanbul cover _mocha --report lcovonly",
"coverage": "istanbul cover _mocha",
"watch": "mocha -w",
"lint": "eslint .",
"test": "mocha"
},
"pre-commit": [
"lint",
"test"
],
"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"
}