-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.48 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
52
53
54
55
56
{
"name": "@blabu.com/payu-gateway",
"author": "Blabu.com <[email protected]> (https://www.blabu.com)",
"bugs": {
"url": "https://github.com/blabu-com/payu-gateway/issues"
},
"description": "Payment gateway for PayU",
"dependencies": {
"node-fetch": "^2.6.0"
},
"devDependencies": {
"@types/mocha": "^5.2.7",
"@types/node": "^12.12.17",
"config": "^3.2.4",
"mocha": "^6.1.4",
"nock": "^11.7.0",
"nodemon": "^2.0.1",
"pre-commit": "^1.2.2",
"ts-node": "^8.5.4",
"tslint": "^5.20.1",
"tslint-config-standard-plus": "^2.3.0",
"typescript": "^3.7.3"
},
"homepage": "https://github.com/blabu-com/payu-gateway#readme",
"keywords": [
"payment",
"gateway",
"payu"
],
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blabu-com/payu-gateway.git"
},
"scripts": {
"build": "rm -rf ./dist && tsc",
"dev": "env NODE_ENV=development nodemon --exec ts-node src/index.ts",
"lint": "tslint -c tslint.json --project tsconfig.json 'src/**/*.ts' 'test/**/*.ts'",
"lint:fix": "tslint --fix -c tslint.json --project tsconfig.json 'src/**/*.ts' 'test/**/*.ts'",
"pretest": "npm run lint",
"test": "mocha --exit --opts test/mocha.opts test/**/*.ts",
"prepublishOnly": "npm run build"
},
"version": "0.1.3",
"files": [
"dist/**/*"
],
"pre-commit": [
"test"
],
"main": "dist/index.js",
"types": "dist/index.d.ts"
}