-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.34 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
{
"name": "ipsp-js-sdk",
"title": "Fondy Checkout SDK",
"description": "Fondy payment service provider javascript sdk",
"version": "2.0.11-alpha.4",
"license": "MIT",
"homepage": "https://fondy.eu",
"main": "src/checkout.js",
"browser": "dist/checkout.js",
"author": {
"name": "CloudIPSP JS Team",
"url": "https://github.com/orgs/cloudipsp/teams/js-team"
},
"repository": {
"type": "git",
"url": "git://github.com/cloudipsp/ipsp-js-sdk.git"
},
"scripts": {
"dev": "npm-run-all --parallel dev:wrangler dev:rollup",
"dev:wrangler": "wrangler dev",
"dev:rollup": "./node_modules/.bin/rollup -c -w --bundleConfigAsCjs",
"build": "npm install && ./node_modules/.bin/rollup -c --bundleConfigAsCjs",
"prepublishOnly": "npm install && ./node_modules/.bin/rollup -c --bundleConfigAsCjs",
"version": "npm run build",
"postversion": "git push && git push --tags"
},
"files": [
"dist",
"src"
],
"devDependencies": {
"@babel/preset-env": "^7.22.4",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.4.0",
"hono": "^3.2.3",
"npm-run-all": "^4.1.5",
"qunit": "^2.14.1",
"rollup": "^3.23.0",
"rollup-plugin-html": "^0.2.1"
}
}