30 lines
860 B
JSON
30 lines
860 B
JSON
{
|
|
"name": "medusa-payment-stripe",
|
|
"version": "1.0.0",
|
|
"description": "Stripe Payment provider for Meduas Commerce",
|
|
"main": "index.js",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/srindom/medusa",
|
|
"directory": "packages/medusa-payment-stripe"
|
|
},
|
|
"author": "Sebastian Rindom",
|
|
"license": "AGPL-3.0-or-later",
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.7.5",
|
|
"@babel/core": "^7.7.5",
|
|
"cross-env": "^5.2.1",
|
|
"@babel/plugin-proposal-class-properties": "^7.7.4",
|
|
"@babel/plugin-transform-runtime": "^7.7.6",
|
|
"@babel/preset-env": "^7.7.5"
|
|
},
|
|
"scripts": {
|
|
"build": "babel src --out-dir . --ignore **/__tests__",
|
|
"prepare": "cross-env NODE_ENV=production npm run build",
|
|
"watch": "babel -w src --out-dir . --ignore **/__tests__"
|
|
},
|
|
"dependencies": {
|
|
"@babel/runtime": "^7.7.6"
|
|
}
|
|
}
|