-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
51 lines (51 loc) · 1.57 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
{
"name": "wallee",
"title": "wallee",
"version": "4.5.0",
"description": "TypeScript/JavaScript client for wallee",
"homepage": "http://github.com/wallee-payment/typescript-sdk",
"repository": {
"type": "git",
"url": "http://github.com/wallee-payment/typescript-sdk.git"
},
"bugs": {
"url": "http://github.com/wallee-payment/typescript-sdk/issues"
},
"main": "build/index.js",
"types": "build/index.d.ts",
"files": ["/build", "LICENSE", "README.MD"],
"scripts": {
"clean": "rm -Rf ./node_modules/ ./build ./test/*.d.ts ./test/*.js",
"build": "tsc --project ./tsconfig.json",
"test": "rm -fr ./test/*.d.ts && mocha --require ts-node/register test/*.test.ts test/*.test.js",
"prepublishOnly": "npm run clean && npm i && npm run build"
},
"author": "wallee AG",
"license": "Apache-2.0",
"keywords": ["wallee", "Payment", "Payment Integration"],
"mocha": {
"timeout": 30000
},
"dependencies": {
"@types/bluebird": "3.5.36",
"@types/crypto-js": "4.2.1",
"@types/request": "2.48.8",
"axios": "1.6.2",
"bluebird": "3.5.0",
"crypto-js": "4.2.0",
"starkbank-ecdsa": "^1.1.5"
},
"devDependencies": {
"@types/chai": "^4.2.1",
"@types/mocha": "^5.2.7",
"chai": "^4.3.7",
"form-data": "^4.0.0",
"minimist": "^1.2.8",
"mocha": "^10.2.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"publishConfig": {
"access": "public"
}
}