forked from wallee-payment/typescript-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.42 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": "wallee",
"title": "wallee",
"version": "3.0.4",
"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": "index.js",
"types": "index.d.ts",
"scripts": {
"clean": "rm -Rf ./node_modules/ ./src/**/*.js ./test/*.d.ts ./test/*.js",
"build": "tsc --project ./tsconfig.json",
"test": "rm -fr ./test/*.d.ts && mocha --require ts-node/register --timeout 10000 test/*.ts test/*.js",
"prepublishOnly": "npm run clean && npm i && npm run build"
},
"author": "wallee AG",
"license": "Apache-2.0",
"keywords": ["wallee", "Payment", "Payment Integration"],
"dependencies": {
"bluebird": "^3.5.0",
"crypto-js": "^3.1.8",
"request": "^2.81.0",
"@types/bluebird": "*",
"@types/crypto-js": "*",
"@types/request": "*"
},
"devDependencies": {
"@types/chai": "^4.2.1",
"@types/mocha": "^5.2.7",
"chai": "^4.2.0",
"form-data": "^2.5.1",
"minimist": "^1.2.5",
"mocha": "^6.2.0",
"ts-node": "^8.3.0",
"typescript": "^3.5.1"
},
"publishConfig":{
"access": "public"
}
}