-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.6 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "vend-nodejs-sdk",
"version": "2.0.0",
"description": "Aims to provides a rich set of client-side functionality for Vend's public APIs",
"license": "Apache-2.0",
"author": "Pulkit Singhal",
"contributors": [
{
"name": "Armand",
"url": "https://github.com/armandchard"
},
{
"name": "Megha",
"url": "https://github.com/MeghaY"
},
{
"name": "Yash Gandhi",
"url": "https://github.com/ysg410"
}
],
"main": "vend.js",
"scripts": {
"eslint": "eslint",
"commit": "commit-wizard",
"test": "jshint . && NODE_ENV=test mocha"
},
"config": {
"pre-git": {
"commit-msg": [],
"pre-commit": [
"./node_modules/.bin/jshint ."
],
"pre-push": [
"./node_modules/.bin/jshint .",
"NODE_ENV=test ./node_modules/.bin/mocha"
],
"post-commit": [],
"post-merge": []
}
},
"repository": {
"type": "git",
"url": "https://github.com/ShoppinPal/vend-nodejs-sdk.git"
},
"keywords": [
"vend",
"nodejs",
"sdk"
],
"bugs": {
"url": "https://github.com/ShoppinPal/vend-nodejs-sdk/issues"
},
"homepage": "https://github.com/ShoppinPal/vend-nodejs-sdk",
"dependencies": {
"bluebird": "2.6.0",
"moment": "2.11.2",
"nconf": "0.7.1",
"request-promise": "0.3.2",
"sp-json-logger": "2.0.1",
"underscore": "1.7.0"
},
"devDependencies": {
"chai": "3.5.0",
"chai-as-promised": "5.3.0",
"eslint": "4.3.0",
"faker": "3.1.0",
"jshint": "2.9.3",
"mocha": "3.0.2",
"pre-git": "3.7.0",
"winston": "0.9.0"
}
}