This repository has been archived by the owner on Mar 8, 2023. It is now read-only.
forked from paysafegroup/paysafe_sdk_nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.98 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "node-paysafe",
"version": "1.11.0",
"description": "Typescript-friendly SDK for Paysafe",
"keywords": [
"paysafe"
],
"author": {
"name": "Tilled, LLC"
},
"license": "ISC",
"main": "./dist/lib/",
"typings": "./dist/lib/index.d.ts",
"scripts": {
"TODOpreinstall": "npx npm-force-resolutions",
"prebuild": "check-engine && rm -rf dist",
"build": "tsc",
"pretest": "npm run build -- -p ./tsconfig.test.json",
"test": "mocha --timeout 20000 --recursive dist",
"prepublishOnly": "npm run build",
"lint": "tslint -c tslint.json 'lib/**/*.ts'",
"fix": "tslint -c tslint.json --fix 'lib/**/*.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gettilled/paysafe_sdk_nodejs"
},
"bugs": {
"url": "https://github.com/gettilled/paysafe_sdk_nodejs/issues"
},
"homepage": "https://github.com/gettilled/paysafe_sdk_nodejs#readme",
"engines": {
"node": ">=8.10.0"
},
"dependencies": {},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@gettilled/commitlint-preset": "^1.0.4",
"@gettilled/tslint-preset": "^1.0.10",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/npm": "^7.1.3",
"@types/chai": "^4.2.21",
"@types/mocha": "^8.2.3",
"@types/node": "^14.17.5",
"chai": "^4.3.4",
"check-engine": "^1.10.0",
"codelyzer": "^6.0.2",
"dot-prop": "^6.0.1",
"express": "^4.17.1",
"husky": "^4.3.8",
"lodash": "^4.17.21",
"mocha": "^8.4.0",
"semantic-release": "^17.4.4",
"trim-newlines": "^4.0.2",
"tslint": "^6.1.3",
"typescript": "^4.3.5"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@gettilled/commitlint-preset"
]
}
}