forked from MONEI/Shopify-api-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 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
56
{
"name": "nodify-shopify",
"version": "0.2.1",
"description": "Shopify API client",
"main": "index.js",
"directories": {
"test": "test"
},
"engines": {
"node": ">=4.0.0"
},
"files": [
"resources",
"mixins",
"index.js"
],
"dependencies": {
"got": "^6.1.2",
"lodash": "^4.6.0",
"qs": "^6.1.0"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^2.2.0",
"istanbul": "^0.4.2",
"mocha": "^2.4.5",
"nock": "^7.2.2",
"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": {
"type": "git",
"url": "git+https://github.com/microapps/Nodify-Shopify.git"
},
"keywords": [
"Shopify",
"API",
"Client"
],
"author": "alexandre saiz <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/microapps/Nodify-Shopify/issues"
},
"homepage": "https://github.com/microapps/Nodify-Shopify"
}