forked from gfortaine/payline-typescript-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.35 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
{
"name": "@yhnlvy/payline-typescript-sdk",
"version": "1.1.8",
"description": "Payline Typescript SDK",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Thibaud Giovannetti",
"repository": {
"url": "https://github.com/yhnlvy/payline-typescript-sdk"
},
"scripts": {
"prepublishOnly": "npm run build",
"lint": "./node_modules/.bin/eslint \"./src/**\" --ext .ts",
"build": "npm run lint && tsc -p . && npm run copy-wsdl",
"link-all": "npm run build && npm link",
"test": "echo \"No test specified\"",
"copy-wsdl": "copyfiles -u 1 './src/config/wsdls/**' ./dist"
},
"keywords": [
"payline",
"nodejs",
"typescript",
"payment",
"sdk"
],
"files": [
"dist"
],
"license": "MIT",
"dependencies": {
"crypto-random-string": "3.3.1",
"moment-timezone": "0.5.34",
"soap": "0.43.0"
},
"devDependencies": {
"@types/chai": "4.1.7",
"@types/moment-timezone": "0.5.30",
"@types/node": "13.11.1",
"@typescript-eslint/eslint-plugin": "2.22.0",
"@typescript-eslint/parser": "2.22.0",
"chai": "4.2.0",
"eslint": "6.8.0",
"copyfiles": "2.2.0",
"reflect-metadata": "0.1.13",
"ts-node": "8.8.1",
"typescript": "4.6.3"
},
"engines": {
"node": "^14.17.0 || >=16.14.0"
},
"private": false,
"publishConfig": {
"access": "public"
}
}