-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.6 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
{
"name": "@subscribepro/sdk",
"version": "0.0.0-development",
"description": "Interface for the SubscribePro API",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest --config jestconfig.json",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "eslint -c .eslintrc.js --ext .ts src/",
"prepack": "yarn build",
"prepublish": "yarn test && yarn lint",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/subscribepro/subscribepro-js.git"
},
"author": "SubscribePro",
"license": "MIT",
"bugs": {
"url": "https://github.com/subscribepro/subscribepro-js/issues"
},
"homepage": "https://github.com/subscribepro/subscribepro-js#readme",
"devDependencies": {
"@types/jest": "^29.2.3",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^27.1.6",
"eslint-plugin-jsdoc": "^39.6.4",
"jest": "^29.3.1",
"prettier": "^2.8.0",
"semantic-release": "^19.0.5",
"ts-jest": "^29.0.3",
"typescript": "^4.9.3"
},
"files": [
"lib"
],
"release": {
"branches": [
"+([0-9])?(.{+([0-9]),x}).x",
"main",
"next",
"next-major",
{
"name": "beta",
"prerelease": true
},
{
"name": "alpha",
"prerelease": true
}
]
},
"dependencies": {
"cross-fetch": "^3.1.5"
},
"publishConfig": {
"access": "public"
}
}