forked from globalpayments/node-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.64 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": "globalpayments-api",
"version": "1.4.6",
"description": "Global Payments SDK for NodeJS for Heartland and Global Payments eCommerce gateways",
"author": "Heartland Payment Systems",
"license": "GPL-2.0",
"repository": {
"type": "git",
"url": "https://github.com/globalpayments/node-sdk.git"
},
"main": "./lib/src/index.js",
"typings": "./lib/src/index",
"scripts": {
"build": "tsc",
"build:netsuite": "webpack --env.GP_NETSUITE_BUILD --config config/webpack.netsuite.js && node bin/netsuite-post.js",
"build:clean": "rimraf lib",
"docs": "typedoc --mode file --name \"GlobalPayments.Api\" --project tsconfig.json --out docs src",
"format": "prettier --write --config .prettierrc 'src/**/*.ts' 'test/**/*.ts' '*.md'",
"prebuild": "npm-run-all test:lint",
"prepublish": "npm-run-all build",
"pretest": "npm-run-all build:clean test:lint build",
"test": "ava",
"test:lint": "tslint --project tsconfig.json src"
},
"dependencies": {
"@azz/elementtree": "^0.1.6",
"es6-promise": "^4.2.8",
"sha1": "^1.1.1",
"typedarray": "^0.0.6",
"url": "^0.11.0"
},
"devDependencies": {
"@hitc/netsuite-types": "^2017.2.32",
"@types/node": "^12.20.7",
"ava": "^0.17.0",
"awesome-typescript-loader": "^3.5.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.18.2",
"rimraf": "^2.6.3",
"tslint": "^4.5.1",
"typedoc": "^0.22.13",
"typescript": "4.2.3",
"webpack": "^3.12.0"
},
"ava": {
"concurrency": 1,
"timeout": "5m",
"failFast": true,
"files": [
"lib/test/**/*Test.js"
],
"source": [
"lib/src/**/*.js"
]
}
}