Files
adyen-node-api-library/package.json
2019-10-15 08:10:12 +02:00

68 lines
2.0 KiB
JSON

{
"name": "@adyen/api-library",
"version": "2.1.5",
"description": "The Adyen API Library for NodeJS enables you to work with Adyen APIs and Hosted Payment Pages.",
"main": "dist/lib/src/index.js",
"types": "dist/lib/src/index.d.ts",
"module": "dist/lib-esm/src/index.js",
"engines": {
"node": ">=8.1.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Adyen/adyen-node-api-library.git"
},
"keywords": [
"adyen",
"api",
"nodejs"
],
"bugs": {
"url": "https://github.com/Adyen/adyen-node-api-library/issues"
},
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/Adyen/adyen-node-api-library#readme",
"scripts": {
"clean": "rm -rf ./dist",
"build": "npm run clean && tsc && tsc -m es6 --outDir dist/lib-esm && webpack",
"lint": "eslint 'src/**/*.ts'",
"lint:fix": "eslint --fix 'src/**/*.ts'",
"test": "jest",
"preversion": "npm test",
"version": "npm run build && git add -A dist",
"postversion": "git push && git push --tags && rm -rf build/temp",
"release": "release-it --no-npm.publish"
},
"author": "Ricardo Ambrogi",
"license": "MIT",
"devDependencies": {
"@babel/core": "7.6.4",
"@babel/plugin-proposal-class-properties": "7.5.5",
"@babel/plugin-proposal-object-rest-spread": "7.6.2",
"@babel/plugin-transform-runtime": "7.6.2",
"@babel/preset-env": "7.6.3",
"@babel/preset-typescript": "7.6.0",
"@babel/runtime": "7.6.3",
"@types/jest": "24.0.19",
"@types/nock": "10.0.3",
"@types/node": "11.13.22",
"@typescript-eslint/eslint-plugin": "2.3.3",
"@typescript-eslint/parser": "2.3.3",
"babel-loader": "8.0.6",
"coveralls": "3.0.7",
"eslint": "6.5.1",
"jest": "24.9.0",
"nock": "11.4.0",
"release-it": "12.4.3",
"ts-loader": "6.2.0",
"typescript": "3.6.4",
"webpack": "4.41.1",
"webpack-cli": "3.3.9"
},
"dependencies": {
"https-proxy-agent": "3.0.0"
}
}