This repository was archived by the owner on Dec 27, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.43 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.43 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
{
"name": "sphere-node-connect",
"description": "Quick and easy way to connect your Node.js app with SPHERE.IO.",
"version": "0.5.8",
"keywords": [
"sphere",
"api",
"connect",
"oauth",
"oauth2"
],
"homepage": "https://github.com/sphereio/sphere-node-connect",
"author": {
"name": "Nicola Molinari",
"email": "nicola.molinari@commercetools.de"
},
"repository": {
"type": "git",
"url": "https://github.com/sphereio/sphere-node-connect.git"
},
"bugs": {
"url": "https://github.com/sphereio/sphere-node-connect/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/sphereio/sphere-node-connect/blob/master/LICENSE-MIT"
}
],
"main": "./lib/main",
"engines": {
"node": ">= 0.8.0"
},
"scripts": {
"build": "grunt build",
"postpublish": "rm -rf lib",
"test": "grunt coverage"
},
"dependencies": {
"request": "2.40.0",
"underscore": "1.6.0",
"sphere-node-utils": "0.4.13"
},
"devDependencies": {
"coveralls": "2.10.0",
"grunt": "0.4.4",
"grunt-bump": "0.0.13",
"grunt-coffeelint": "0.0.8",
"grunt-contrib-clean": "0.5.0",
"grunt-contrib-coffee": "0.10.1",
"grunt-contrib-concat": "0.4.0",
"grunt-contrib-watch": "0.6.1",
"grunt-shell": "0.6.4",
"istanbul": "0.2.7",
"jasmine-node": "1.13.1",
"sphere-coffeelint": "git://github.com/sphereio/sphere-coffeelint.git#master"
}
}