mirror of
https://github.com/jlengrand/adyen-web.git
synced 2026-03-10 08:01:22 +00:00
92 lines
3.1 KiB
JSON
92 lines
3.1 KiB
JSON
{
|
|
"name": "@adyen/adyen-web",
|
|
"keywords": [
|
|
"adyen",
|
|
"adyen-web",
|
|
"checkout",
|
|
"payment",
|
|
"payments",
|
|
"components"
|
|
],
|
|
"main": "dist/adyen.js",
|
|
"version": "3.9.0",
|
|
"license": "MIT",
|
|
"homepage": "https://www.adyen.com/",
|
|
"repository": "github:Adyen/adyen-web",
|
|
"bugs": {
|
|
"url": "https://support.adyen.com/"
|
|
},
|
|
"scripts": {
|
|
"start": "npm run dev-server",
|
|
"dev-server": "NODE_ENV=development webpack-dev-server --config config/webpack.dev.js",
|
|
"docs:generate": "typedoc --out docs src --exclude \"**/*+(index|.test).ts\"",
|
|
"build": "rm -rf dist/ && webpack --config config/webpack.prod.js",
|
|
"test": "BABEL_ENV=test jest --config config/jest.config.js",
|
|
"test:watch": "npm run test -- --watchAll",
|
|
"test:coverage": "npm run test -- --coverage",
|
|
"stats": "webpack --config config/webpack.prod.js --profile --progress --json > stats.json",
|
|
"analyze": "npm run stats && webpack-bundle-analyzer -h 0.0.0.0 -p 3024 stats.json dist/$npm_package_version",
|
|
"size": "npm run build && node ./scripts/size",
|
|
"type-check": "tsc --noEmit",
|
|
"lint": "npm run type-check && eslint 'src/**/*.{js,ts,tsx}' --quiet",
|
|
"lint:fix": "npm run lint -- --fix"
|
|
},
|
|
"devDependencies": {
|
|
"@types/applepayjs": "^3.0.0",
|
|
"@types/googlepay": "^0.3.0",
|
|
"@types/jest": "^23.3.5",
|
|
"@typescript-eslint/eslint-plugin": "^1.9.0",
|
|
"@typescript-eslint/parser": "^1.9.0",
|
|
"autoprefixer": "^9.7.1",
|
|
"core-js": "^3.4.0",
|
|
"css-loader": "^0.28.11",
|
|
"cssnano": "^4.1.10",
|
|
"dotenv": "^6.2.0",
|
|
"enzyme": "^3.9.0",
|
|
"enzyme-adapter-preact-pure": "^2.1.0",
|
|
"eslint": "^5.8.0",
|
|
"eslint-import-resolver-webpack": "^0.11.0",
|
|
"eslint-loader": "^2.1.2",
|
|
"eslint-plugin-import": "^2.19.1",
|
|
"eslint-plugin-react": "^7.10.0",
|
|
"express": "^4.17.1",
|
|
"file-loader": "^3.0.1",
|
|
"filesize": "^3.6.1",
|
|
"gzip-size": "^5.1.1",
|
|
"html-webpack-plugin": "3.2.0",
|
|
"jest": "^24.9.0",
|
|
"loader-utils": "^1.2.3",
|
|
"mini-css-extract-plugin": "^0.4.4",
|
|
"node-sass": "^4.12.0",
|
|
"postcss": "^7.0.21",
|
|
"postcss-loader": "^3.0.0",
|
|
"postcss-reporter": "^1.4.1",
|
|
"prettier": "^1.18.2",
|
|
"promise": "^7.3.1",
|
|
"request": "^2.81.0",
|
|
"sass-loader": "^7.0.3",
|
|
"style-loader": "^0.21.0",
|
|
"stylelint": "^9.5.0",
|
|
"stylelint-config-recommended": "^2.1.0",
|
|
"terser-webpack-plugin": "^1.4.1",
|
|
"ts-jest": "^25.2.0",
|
|
"ts-loader": "^5.4.5",
|
|
"tslib": "^1.11.1",
|
|
"typescript": "^3.7.3",
|
|
"webpack": "^4.41.2",
|
|
"webpack-bundle-analyzer": "^3.6.0",
|
|
"webpack-cli": "^3.3.8",
|
|
"webpack-dev-server": "^3.9.0",
|
|
"webpack-merge": "^4.2.2",
|
|
"whatwg-fetch": "^3.0.0"
|
|
},
|
|
"dependencies": {
|
|
"classnames": "^2.2.6",
|
|
"preact": "^10.2.1",
|
|
"unistore": "^3.5.1"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
]
|
|
}
|