mirror of
https://github.com/jlengrand/adyen-node-api-library.git
synced 2026-03-10 08:01:20 +00:00
55 lines
1.6 KiB
JSON
55 lines
1.6 KiB
JSON
{
|
|
"name": "adyen-node-api-library",
|
|
"version": "1.0.0",
|
|
"description": "The Adyen API Library for NodeJS enables you to work with Adyen APIs and Hosted Payment Pages.",
|
|
"main": "dist/lib/index.js",
|
|
"types": "dist/lib/index.d.ts",
|
|
"module": "dist/lib-esm/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"
|
|
},
|
|
"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"
|
|
},
|
|
"author": "Ricardo Ambrogi",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@babel/core": "7.5.0",
|
|
"@babel/plugin-proposal-class-properties": "7.5.0",
|
|
"@babel/plugin-proposal-object-rest-spread": "7.5.0",
|
|
"@babel/plugin-transform-runtime": "7.5.0",
|
|
"@babel/preset-env": "7.5.0",
|
|
"@babel/preset-typescript": "7.3.3",
|
|
"@babel/runtime": "7.5.0",
|
|
"@types/jest": "24.0.15",
|
|
"@types/node": "11.13.17",
|
|
"@typescript-eslint/eslint-plugin": "1.11.0",
|
|
"@typescript-eslint/parser": "1.11.0",
|
|
"babel-loader": "8.0.6",
|
|
"eslint": "6.0.1",
|
|
"coveralls": "^3.0.4",
|
|
"jest": "24.8.0",
|
|
"ts-loader": "6.0.4",
|
|
"typescript": "3.5.2",
|
|
"webpack": "4.35.2",
|
|
"webpack-cli": "3.3.5"
|
|
}
|
|
}
|