-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
58 lines (58 loc) · 1.84 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "@bambora/wallet",
"version": "3.1.0",
"description": "Worldline Online Checkout JavaScript API for Wallet transactions",
"main": "dist/index.js",
"types": "dist/types/index.d.ts",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"test": "ts-mocha -p tsconfig.json test/**/*.spec.ts",
"clean": "rimraf ./dist",
"start": "npm run clean && webpack serve --config webpack.dev.js",
"dev-build": "npm run clean && webpack --config webpack.dev.js",
"build": "npm run lint && npm run clean && webpack --config webpack.prod.js",
"lint": "eslint -c .eslintrc --ext .ts src test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bambora/wallet-js.git"
},
"author": "Worldline S.A. <support.nordics@worldline.com> (https://worldline.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/bambora/wallet-js/issues"
},
"homepage": "https://github.com/bambora/wallet-js#readme",
"devDependencies": {
"@types/applepayjs": "^14.0.8",
"@types/chai": "4.3.4",
"@types/chai-as-promised": "7.1.5",
"@types/chai-spies": "^1.0.6",
"@types/googlepay": "^0.7.5",
"@types/jsdom": "^21.1.6",
"@types/mocha": "10.0.1",
"@types/webpack": "5.28.0",
"@typescript-eslint/eslint-plugin": "5.55.0",
"@typescript-eslint/parser": "5.55.0",
"chai": "4.3.7",
"chai-as-promised": "7.1.1",
"chai-spies": "^1.1.0",
"eslint": "8.36.0",
"eslint-config-prettier": "8.7.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-prettier": "4.2.1",
"jsdom": "^24.0.0",
"mocha": "10.2.0",
"rimraf": "4.4.0",
"terser-webpack-plugin": "5.3.7",
"ts-loader": "9.4.2",
"ts-mocha": "10.0.0",
"typescript": "5.0.2",
"webpack": "5.76.2",
"webpack-cli": "5.0.1",
"webpack-dev-server": "4.13.1",
"webpack-merge": "5.8.0"
}
}