-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.47 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
{
"name": "hipay-professional-sdk",
"version": "1.2.0",
"description": "HiPay Professional SDK for JavaScript",
"keywords": [
"hipay"
],
"author": "Nathan Poirier <[email protected]>",
"license": "Apache-2.0",
"homepage": "https://github.com/nathan818fr/hipay-professional-sdk-js",
"repository": "https://github.com/nathan818fr/hipay-professional-sdk-js",
"engines": {
"node": ">=10"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**"
],
"scripts": {
"format": "prettier -w ./src ./test ./.github \"*.js\" \"*.json\" \"*.yml\" \"*.md\"",
"clean": "rimraf lib",
"build": "yarn run clean && yarn run build:ts",
"build:ts": "tsc",
"lint": "eslint --ext .js,.ts ./src",
"test": "jest --coverage --collectCoverageFrom=src/**/*.ts --verbose --detectOpenHandles",
"release": "yarn run lint && yarn run build && np"
},
"dependencies": {
"axios": "^0.23.0",
"xml-js": "^1.6.11"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/jest": "^27.0.2",
"@types/node": "^13.13.52",
"@types/puppeteer": "^5.4.4",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"dotenv": "^8.6.0",
"eslint": "^7.32.0",
"fs-extra": "^9.1.0",
"jest": "^27.2.5",
"ngrok": "^4.2.2",
"np": "^7.5.0",
"prettier": "^2.4.1",
"puppeteer": "^9.1.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.7",
"typescript": "^4.4.4"
}
}