forked from avaly/paddle-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.52 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
{
"name": "paddle-sdk",
"description": "The Paddle.com Node.js SDK",
"version": "2.3.0",
"main": "sdk.js",
"types": "sdk.d.ts",
"author": "Valentin Agachi <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/avaly/paddle-sdk"
},
"license": "MIT",
"keywords": [
"paddle",
"sdk",
"api",
"payments",
"subscriptions"
],
"engines": {
"node": ">=10.0.0"
},
"files": [
"sdk.js",
"sdk.d.ts",
"lib/"
],
"scripts": {
"docs": "jsdoc2md --partial docs/main.hbs --helper docs/helpers.js --files sdk.js > Documentation.md",
"lint": "eslint . --cache --fix --ignore-pattern '!.eslintrc.js'",
"pretty": "prettier --write --list-different \"**/*.js\"",
"release": "yarn docs && git add Documentation.md && standard-version -a",
"test:jest": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test": "yarn test:jest",
"pretest": "yarn lint",
"declaration:build": "tsc --allowJs --declaration --emitDeclarationOnly sdk.js"
},
"dependencies": {
"got": "^10.2.0"
},
"devDependencies": {
"eslint": "^6.8.0",
"husky": "^3.1.0",
"jest": "^24.9.0",
"jsdoc-to-markdown": "^5.0.3",
"lint-staged": "^9.5.0",
"nock": "^11.7.0",
"prettier": "^1.19.1",
"standard-version": "^7.0.1",
"typescript": "^3.8.3",
"validate-commit-msg": "^2.14.0"
},
"husky": {
"hooks": {
"commit-msg": "validate-commit-msg",
"pre-commit": "lint-staged"
}
}
}