-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.6 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
57
58
{
"name": "gateway-payu",
"version": "0.0.0-development",
"description": "Payment gateway for PayU",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"source": "src/index.js",
"scripts": {
"start": "./node_modules/.bin/nodemon --exec babel-node ./src/index.js",
"test": "./node_modules/.bin/mocha --exit",
"test:watch": "./node_modules/.bin/mocha --watch --watch-extensions js \"test/**/*.js\"",
"build": "./node_modules/.bin/rollup -c",
"serve": "node ./dist/index.js",
"debug": "./node_modules/.bin/babel-node --inspect-brk ./src/index.js",
"semantic-release": "./node_modules/.bin/semantic-release"
},
"keywords": [
"payment",
"gateway",
"payu"
],
"author": "Sebastian Sobociński <sebastian@soft-bind.com>",
"license": "MIT",
"dependencies": {
"dotenv": "^8.0.0"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/node": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@babel/register": "^7.4.4",
"builtin-modules": "^3.1.0",
"chai": "^4.2.0",
"cz-conventional-changelog": "^3.1.0",
"mocha": "^6.1.4",
"nock": "^10.0.6",
"nodemon": "^1.19.1",
"prettier": "1.18.2",
"rollup": "^1.16.2",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-json": "^4.0.0",
"semantic-release": "^17.2.3",
"sinon": "^7.3.2"
},
"repository": {
"type": "git",
"url": "https://github.com/hiddenboox/gateway-payu.git"
},
"publishConfig": {
"access": "public"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}