-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.43 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.43 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "@smartpay/sdk-node",
"type": "module",
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"version": "0.9.1",
"description": "Smartpay SDK NodeJS",
"main": "./build/cjs/index.cjs",
"module": "./build/esm/index.js",
"exports": {
".": [
{
"import": "./build/esm/index.js",
"require": "./build/cjs/index.cjs"
}
]
},
"types": "./build/esm/index.d.ts",
"scripts": {
"format": "prettier --write 'src/**/*.ts'",
"schemas": "./scripts/schemas.sh",
"build:esm": "node --experimental-json-modules build.js",
"build:cjs": "node build.cjs",
"build": "yarn build:esm && yarn build:cjs",
"prepublishOnly": "npm run build",
"pretest": "yarn build",
"test:unit": "tape test/unit.js",
"test:nock": "tape test/nock.js",
"test:live": "tape test/live.js",
"test": "yarn test:unit && yarn test:live"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smartpay-co/sdk-node.git"
},
"keywords": [
"bnpl",
"smartpay",
"sdk",
"node"
],
"author": "Smartpay Co. Ltd.",
"license": "MIT",
"bugs": {
"url": "https://github.com/smartpay-co/sdk-node/issues"
},
"homepage": "https://github.com/smartpay-co/sdk-node#readme",
"devDependencies": {
"@types/express": "^4.17.13",
"@types/randomstring": "^1.1.8",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"@typescript-eslint/parser": "^4.28.2",
"esbuild": "^0.13.9",
"esbuild-plugin-d.ts": "^1.0.6",
"eslint": "^7.2.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^24.1.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.8",
"eslint-plugin-testing-library": "^3.9.2",
"eslint-webpack-plugin": "^2.5.2",
"express": "^4.18.2",
"jsonfile": "^6.1.0",
"prettier": "^2.3.2",
"replace-in-file": "^6.3.2",
"tape": "^5.3.1",
"typescript": "^4.3.5"
},
"dependencies": {
"base-x": "^4.0.0",
"fetch-retry": "^5.0.2",
"isomorphic-unfetch": "^3.1.0",
"jtd": "^0.1.1",
"query-string": "^7.0.1",
"randomstring": "^1.2.2"
},
"directories": {
"test": "test"
}
}