-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 938 Bytes
/
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
{
"name": "payment-backend",
"version": "1.0.0",
"description": "payment backend using paypal and braintree api",
"main": "server.js",
"scripts": {
"dev": "NODE_ENV=development nodemon ./server.js",
"server" : "node ./server.js",
"test": "mocha -b ./test || exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/paragasu/payment-backend.git"
},
"keywords": [
"paypal",
"braintree",
"payment",
"gateway"
],
"author": "Jeffry L.",
"license": "MIT",
"bugs": {
"url": "https://github.com/paragasu/payment-backend/issues"
},
"homepage": "https://github.com/paragasu/payment-backend#readme",
"dependencies": {
"assert": "^1.4.1",
"body-parser": "^1.15.2",
"braintree": "^1.41.0",
"chai": "^3.5.0",
"express": "^4.14.0",
"mocha": "^3.1.0",
"mongodb": "^2.2.10",
"nodemon": "^1.10.2",
"paypal-rest-sdk": "^1.6.9"
}
}