-
Notifications
You must be signed in to change notification settings - Fork 104
/
package.json
50 lines (50 loc) · 1.68 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
{
"name": "braintree",
"version": "3.26.0",
"description": "A library for server-side integrating with Braintree.",
"keywords": [
"braintree",
"payments"
],
"homepage": "https://github.com/braintree/braintree_node",
"author": "Braintree <[email protected]> (https://www.braintreepayments.com)",
"main": "index",
"directories": {
"lib": "./lib"
},
"repository": {
"type": "git",
"url": "https://github.com/braintree/braintree_node.git"
},
"engines": {
"node": ">=10.0",
"npm": ">=6"
},
"dependencies": {
"@braintree/wrap-promise": "2.1.0",
"dateformat": "4.5.1",
"xml2js": "0.5.0"
},
"devDependencies": {
"chai": "^4.3.4",
"eslint": "^7.26.0",
"eslint-config-braintree": "^4.0.0",
"eslint-config-prettier": "^8.5.0",
"mocha": "^8.4.0",
"mocha-junit-reporter": "^2.1.0",
"prettier": "^2.7.1",
"sinon": "^10.0.0"
},
"license": "MIT",
"scripts": {
"prettier": "prettier --write .",
"prelint": "prettier --check .",
"lint": "eslint lib/ test/",
"pretest": "npm run lint",
"test:unit": "mocha test/unit --recursive -r test/spec_helper",
"test:unit:report": "mocha test/unit --recursive -r test/spec_helper --reporter mocha-junit-reporter --reporter-options mochaFile=tmp/build/unit_test_results.junit.xml",
"test:integration": "mocha --timeout 60000 --slow 2000 test/integration --recursive -r test/spec_helper",
"test:integration:report": "mocha --timeout 60000 --slow 2000 test/integration --recursive -r test/spec_helper --reporter mocha-junit-reporter --reporter-options mochaFile=tmp/build/integration_test_results.junit.xml",
"test": "npm run test:unit"
}
}