-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
46 lines (46 loc) · 1.08 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
{
"name": "beans-merchant-sdk",
"description": "Beans Merchant API Library",
"version": "2.0.0",
"type": "module",
"main": "dist/sdk.js",
"scripts": {
"build": "cross-env NODE_ENV=production webpack",
"build:dev": "cross-env NODE_ENV=development webpack",
"publish": "npm run build && npm publish",
"watch": "tsc -w",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Beans-BV/merchant_sdk_javascript.git"
},
"keywords": [
"beans",
"merchant",
"api",
"stellar",
"qr"
],
"author": "Beans B.V.",
"license": "MIT",
"devDependencies": {
"@types/eslint": "^8.56.2",
"@types/node": "^14.18.63",
"cross-env": "^7.0.3",
"ts-loader": "^9.5.1",
"typescript": "^4.9.5",
"webpack": "^5.90.0",
"webpack-cli": "^5.1.4"
},
"engines": {
"node": ">=10.0.0"
},
"bugs": {
"url": "https://github.com/Beans-BV/merchant_sdk_javascript/issues"
},
"homepage": "https://www.beansapp.com/",
"directories": {
"example": "example"
}
}