-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.81 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.81 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "@bambora/checkout-sdk-web",
"version": "3.1.0",
"description": "JavaScript SDK for Checkout.",
"main": "./dist/checkout-sdk.js",
"module": "./dist/checkout-sdk.mjs",
"types": "./dist/types/index.d.ts",
"engines": {
"node": ">=20.11.1"
},
"scripts": {
"start": "rimraf ./dist && rollup -c --configPlugin typescript --watch",
"clean": "rimraf ./dist",
"build": "npm run lint && npm run clean && rollup -c --configPlugin typescript",
"build:production": "cross-env NODE_ENV=production npm run build",
"test": "web-test-runner",
"lint": "eslint -c .eslintrc --ext .ts src test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bambora/checkout-sdk-web.git"
},
"author": "Bambora Online A/S (https://bambora.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/bambora/checkout-sdk-web/issues"
},
"homepage": "https://github.com/bambora/checkout-sdk-web#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "28.0.6",
"@rollup/plugin-node-resolve": "16.0.1",
"@rollup/plugin-replace": "6.0.2",
"@rollup/plugin-terser": "0.4.4",
"@rollup/plugin-typescript": "12.1.4",
"@types/chai": "4.1.1",
"@types/mocha": "10.0.10",
"@types/sinon": "4.1.3",
"@typescript-eslint/eslint-plugin": "5.55.0",
"@typescript-eslint/parser": "5.55.0",
"@web/dev-server-esbuild": "1.0.4",
"@web/test-runner": "0.20.2",
"@web/test-runner-mocha": "0.9.0",
"chai": "6.0.1",
"cross-env": "10.0.0",
"eslint": "8.36.0",
"eslint-config-prettier": "8.7.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-prettier": "5.0.0",
"mitt": "1.1.3",
"mocha": "11.7.2",
"promise-polyfill": "8.3.0",
"rimraf": "6.0.1",
"rollup": "4.50.1",
"sinon": "21.0.0",
"typescript": "5.9.2"
}
}