-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
75 lines (75 loc) · 1.81 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
{
"name": "paddle-sdk",
"description": "The Paddle.com Node.js SDK",
"version": "4.7.0",
"type": "module",
"main": "./cjs/index.js",
"exports": {
"import": "./esm/index.js",
"require": "./cjs/index.js"
},
"types": "./esm/sdk.d.ts",
"author": "Valentin Agachi <github-com@agachi.name>",
"repository": {
"type": "git",
"url": "https://github.com/avaly/paddle-sdk"
},
"license": "MIT",
"keywords": [
"paddle",
"sdk",
"api",
"payments",
"subscriptions"
],
"engines": {
"node": ">=14.17.0"
},
"files": [
"cjs/",
"esm/"
],
"scripts": {
"build": "./build.sh",
"docs": "typedoc",
"lint": "eslint . --cache --fix --ignore-pattern '!.eslintrc.cjs'",
"prepack": "yarn build",
"prepare": "husky install",
"pretty": "prettier --write --list-different \"**/*.ts\"",
"release": "standard-version -a",
"test": "yarn test:jest",
"test:coverage": "jest --coverage",
"test:build": "./tests/build.sh",
"test:jest": "jest",
"test:pretty": "prettier --check \"**/*.ts\"",
"test:types": "tsc --noEmit",
"test:watch": "jest --watch"
},
"dependencies": {
"axios": "1.7.4"
},
"devDependencies": {
"@types/jest": "29.5.0",
"@types/node": "14.18.36",
"@typescript-eslint/eslint-plugin": "5.56.0",
"@typescript-eslint/parser": "5.56.0",
"eslint": "8.36.0",
"eslint-config-prettier": "8.8.0",
"husky": "8.0.3",
"jest": "29.5.0",
"lint-staged": "13.2.0",
"nock": "11.7.0",
"prettier": "2.8.7",
"standard-version": "9.5.0",
"ts-jest": "29.0.5",
"ts-node": "10.9.1",
"typedoc": "0.23.28",
"typescript": "5.0.2",
"validate-commit-msg": "2.14.0"
},
"standard-version": {
"scripts": {
"postbump": "yarn build && git add ./src/version.ts"
}
}
}