-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.48 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": "node-paypal",
"version": "1.0.0",
"private": true,
"description": "A lightweight nodejs paypal payment package",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"repository": {
"type": "git",
"git": "https://github.com/dbpkgs/node-paypal.git"
},
"bugs": "https://github.com/dbpkgs/node-paypal/issues",
"author": "dbpkgs",
"license": "MIT",
"engines": {
"node": "~14.17.1"
},
"keywords": [
"node-paypal",
"paypal",
"paypal-node",
"paypal-payment",
"rest-paypal",
"paypal-rest",
"sdk",
"paypal-sdk"
],
"scripts": {
"build": "rimraf ./lib && tsc",
"coverage": "TZ=pst yarn test --silent --env=jsdom --coverage --watchAll=false --testTimeout=9000",
"test": "jest --config jestconfig.json",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"ts-coverage": "typescript-coverage-report --threshold=86",
"prepare": "yarn build",
"prepublishOnly": "yarn test",
"postversion": "git push && git push --tags",
"version": "yarn run format && git add -A src"
},
"dependencies": {
"axios": "^0.26.0"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/node": "^17.0.18",
"jest": "^27.5.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.3",
"ts-node": "^10.5.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.5.5",
"typescript-coverage-report": "^0.6.4"
}
}