forked from SAP-archive/yaas-node-red-contrib-yaas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.28 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
{
"name": "node-red-contrib-yaas",
"version": "0.1.16",
"description": "Node-RED contrib for YaaS (SAP Hybris as a Service).",
"repository": {
"type": "git",
"url": "https://github.com/SAP/yaas-node-red-contrib-yaas"
},
"keywords": [
"node-red",
"hybrislabs",
"hybris",
"yaas"
],
"node-red": {
"nodes": {
"cart": "cart.js",
"checkout": "checkout.js",
"configuration": "configuration.js",
"coupon": "coupon.js",
"credentials": "credentials.js",
"customer": "customer.js",
"document": "document.js",
"productdetails": "productdetails.js",
"pubsub": "pubsub.js",
"recommender": "recommender.js",
"salesorders": "salesorders.js",
"stripecredentials": "stripecredentials.js"
}
},
"author": {
"name": "hybris labs",
"email": "[email protected]",
"url": "https://labs.hybris.com"
},
"license": "Apache-2.0",
"scripts": {
"test": "node_modules/.bin/mocha",
"lint": "jshint --config .jshintrc *.js"
},
"dependencies": {
"request": "^2.65.0",
"stripe": "^4.0.0",
"underscore": "^1.8.3",
"yaas.js": "^0.2.0"
},
"devDependencies": {
"jshint": "~2",
"mocha": "^3.0.1",
"should": "^11.0.0"
},
"jshintConfig": {
"esversion": 6
}
}