-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
42 lines (42 loc) · 1.1 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
{
"name": "braintree-as-promised",
"description": "Add native promises to braintree gateway",
"version": "1.0.0",
"homepage": "https://github.com/enhancv/braintree-as-promised",
"author": {
"name": "Ivan Kerin",
"email": "ikerin@gmail.com"
},
"repository": {
"type": "git",
"url": "git://github.com/enhancv/braintree-as-promised.git"
},
"bugs": {
"url": "https://github.com/enhancv/braintree-as-promised/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/enhancv/braintree-as-promised/blob/master/LICENSE-MIT"
}
],
"main": "src/promised",
"engines": {
"node": ">= 5.0.0"
},
"scripts": {
"lint": "node node_modules/eslint/bin/eslint src",
"coverage": "node node_modules/istanbul/lib/cli cover node_modules/mocha/bin/_mocha -- --recursive",
"test": "node node_modules/mocha/bin/mocha --recursive"
},
"peerDependencies": {
"braintree": "^1.37.0||^2.0.0"
},
"devDependencies": {
"braintree": "^1.37.0||^2.0.0",
"istanbul": "^0.4.5",
"dotenv": "^4.0.0",
"mocha": "^3.2.0"
},
"keywords": []
}