forked from MONEI/Shopify-api-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.11 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
{
"name": "shopify-api-node",
"version": "2.7.0",
"description": "Shopify API bindings for Node.js",
"main": "index.js",
"directories": {
"test": "test"
},
"engines": {
"node": ">=4.0.0"
},
"files": [
"resources",
"mixins",
"index.js"
],
"dependencies": {
"got": "^7.0.0",
"lodash": "^4.6.0",
"qs": "^6.1.0",
"stopcock": "^1.0.0"
},
"devDependencies": {
"chai": "^4.0.0",
"eslint": "^4.0.0",
"istanbul": "^0.4.2",
"mocha": "^3.0.1",
"nock": "^9.0.0",
"pre-commit": "^1.1.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"
}