-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
85 lines (85 loc) · 2.16 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "sphere-node-sdk",
"description": "Officially supported Node.js SDK library for working with the SPHERE.IO HTTP API, with OAuth2 support.",
"version": "3.2.2",
"homepage": "https://github.com/sphereio/sphere-node-sdk",
"author": {
"name": "Nicola Molinari",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git://github.com/sphereio/sphere-node-sdk.git"
},
"bugs": {
"url": "https://github.com/sphereio/sphere-node-sdk/issues"
},
"license": "MIT",
"main": "./lib/main",
"engines": {
"node": ">= 8.0.0"
},
"scripts": {
"commit": "git-cz",
"build": "grunt build",
"watch": "grunt watch",
"test": "grunt coverage"
},
"dependencies": {
"debug": "4.1.1",
"jsondiffpatch": "0.4.1",
"lodash.isnil": "^4.0.0",
"request": "^2.88.0",
"sphere-node-utils": "^2.0.0",
"underscore-mixins": "^0.1.4"
},
"peerDependencies": {
"bluebird": ">=2.3.0",
"underscore": ">=1.8.0"
},
"devDependencies": {
"biscotto": "github:daern91/biscotto",
"bluebird": "3.7.x",
"coffeelint": "^2.0.0",
"commitizen": "^4.0.0",
"coveralls": "^3.0.2",
"cz-conventional-changelog": "3.2.0",
"express": "4.17.x",
"gh-pages": "^3.0.0",
"ghooks": "2.0.4",
"grunt": "^1.0.4",
"grunt-bump": "^0.8.0",
"grunt-cli": "^1.2.0",
"grunt-coffeelint": "0.0.16",
"grunt-contrib-clean": "2.0.0",
"grunt-contrib-coffee": "github:daern91/grunt-contrib-coffee",
"grunt-contrib-concat": "1.0.1",
"grunt-contrib-watch": "^1.1.0",
"grunt-express-server": "0.5.x",
"grunt-shell": "3.0.x",
"istanbul": "^0.4.5",
"jasmine-node": "github:daern91/jasmine-node",
"semver": "^7.0.0",
"sphere-coffeelint": "git://github.com/sphereio/sphere-coffeelint.git#master",
"underscore": "1.10.x",
"validate-commit-msg": "2.14.0"
},
"keywords": [
"sphere",
"sphereio",
"rest",
"api",
"sdk",
"sync",
"promise",
"ecommerce"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
},
"ghooks": {
"commit-msg": "validate-commit-msg"
}
}
}