-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.29 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.29 KB
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": "@salable/node-sdk",
"version": "5.0.0",
"description": "Node.js SDK to interact with Salable APIs",
"main": "dist/index.js",
"module": "dist/index.es.js",
"types": "dist/src/index.d.ts",
"repository": "https://github.com/Salable/node-sdk.git",
"author": "Salable",
"license": "MIT",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"prepare": "husky",
"pre-commit": "lint-staged",
"lint": "eslint . -c eslint.config.mjs",
"lint:fix": "eslint . -c eslint.config.mjs --fix",
"test": "jest --passWithNoTests",
"test:globalCoverage": "jest --coverage --passWithNoTests",
"test:coverage": "jest --coverage --changedSince=origin/main --passWithNoTests",
"build": "rollup -c",
"preversion": "npm run build"
},
"keywords": [],
"bugs": {
"url": "https://github.com/Salable/node-sdk/issues"
},
"homepage": "https://github.com/Salable/node-sdk#readme",
"devDependencies": {
"@aws-sdk/client-kms": "^3.682.0",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@eslint/js": "^9.13.0",
"@prisma/client": "^5.21.1",
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-replace": "^5.0.1",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@sentry/node": "^7.81.1",
"@types/jest": "^29.5.13",
"@types/node": "^22.7.0",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.7.0",
"date-fns": "^4.1.0",
"dotenv": "^16.3.1",
"eslint": "^9.13.0",
"eslint-plugin-jest": "^28.8.3",
"globals": "^15.11.0",
"husky": "^9.1.6",
"jest": "^29.7.0",
"jest-extended": "^4.0.2",
"jest-fetch-mock": "^3.0.3",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"prisma": "^5.21.1",
"rollup": "4.22.4",
"rollup-plugin-cleaner": "^1.0.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.36.0",
"semantic-release": "^24.1.1",
"stripe": "^16.12.0",
"ts-jest": "^29.2.5",
"typescript": "^5.6.2",
"typescript-eslint": "^8.10.0",
"uuid": "^9.0.1"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "4.22.4"
}
}