-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
61 lines (61 loc) · 1.61 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
56
57
58
59
60
61
{
"name": "checkout-sdk-node",
"version": "2.4.2",
"description": "",
"type": "commonjs",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"devDependencies": {
"@babel/cli": "^7.16.8",
"@babel/core": "^7.16.7",
"@babel/eslint-parser": "^7.16.5",
"@babel/eslint-plugin": "^7.16.5",
"@babel/node": "^7.16.8",
"@babel/preset-env": "^7.16.8",
"chai": "^4.3.4",
"codecov": "^3.8.2",
"eslint": "^8.34.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-chai-friendly": "^0.7.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.4.0",
"esm": "^3.2.25",
"mocha": "^8.4.0",
"mocha-junit-reporter": "^2.0.0",
"nock": "^13.0.11",
"nyc": "^15.1.0",
"prettier": "^2.1.2",
"uuid": "^8.3.2"
},
"runkitExampleFilename": "example.js",
"scripts": {
"start": "nodemon --exec babel-node ./src/index.js",
"lint": "eslint --fix --ext .js src/",
"test": "nyc --reporter=html mocha --timeout 300000 'test/**/*.js' --require esm",
"posttest": "nyc report --reporter=json",
"test:watch": "mocha --timeout 300000 'test/**/*.js' --watch --require esm",
"build": "babel src --out-dir ./dist --source-maps",
"codecov": "codecov -f coverage/*.json",
"tsc": "tsc"
},
"dependencies": {
"axios": "^0.27.2",
"form-data": "^4.0.0",
"node-fetch": "^2.6.12"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": 6
}
}
]
]
},
"author": "Ioan Ghisoi",
"license": "MIT"
}