-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 1.4 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
{
"name": "connect-web-sdk",
"version": "2.1.0",
"description": "Mastercard Open Banking Connect Web SDK",
"main": "dist/mastercard-connect-cjs.min.js",
"module": "dist/mastercard-connect-esm.min.js",
"types": "dist/types/index.d.ts",
"scripts": {
"build": "VERSION=$npm_package_version npm run build:types && npm run build:js",
"build:types": "tsc --emitDeclarationOnly --project tsconfig.build.json",
"build:js": "rollup --config rollup.config.js",
"dev": "npm run build -- --watch",
"test": "jest ./src/*.spec.ts",
"prettier-check": "prettier --check .",
"prettier-fix": "prettier --write ."
},
"exports": {
".": {
"import": "./dist/mastercard-connect-esm.min.js",
"require": "./dist/mastercard-connect-cjs.min.js",
"umd": "./dist/mastercard-connect-umd.min.js",
"types": "./dist/types/index.d.ts"
}
},
"author": "",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@types/jest": "^26.0.22",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"rollup": "^2.79.1",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^26.5.4",
"tslib": "^2.6.3",
"typescript": "^4.2.3",
"watch": "^1.0.2"
},
"repository": {
"type": "git",
"url": "https://github.com/Mastercard/connect-web-sdk.git"
}
}