-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
42 lines (42 loc) · 941 Bytes
/
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
{
"name": "@ingameltd/payu",
"version": "1.0.6",
"description": "PayU client for NodeJS",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepublish": "npm run build",
"build": "tsc",
"build:check": "tsc --noEmit",
"watch": "tsc --watch",
"test": "echo 'no tests yet'",
"docs": "npx typedoc --out docs src"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ingameltd/payu.git"
},
"keywords": [
"payu",
"typescript",
"node"
],
"author": "Kasun Vithanage",
"license": "MIT",
"bugs": {
"url": "https://github.com/ingameltd/payu/issues"
},
"homepage": "https://github.com/ingameltd/payu#readme",
"devDependencies": {
"@types/node": "^17.0.24",
"typedoc": "^0.22.15",
"typescript": "^4.6.3"
},
"dependencies": {
"axios": "^0.21.4",
"moment": "^2.29.2"
}
}