-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.34 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.34 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
{
"name": "aws-mock-data",
"version": "1.3.1",
"description": "Mock data for AWS services",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.mjs",
"license": "MIT",
"keywords": [
"AWS",
"mock",
"testing"
],
"repository": {
"type": "github",
"url": "https://github.com/ShellXploit/aws-mock-data.git"
},
"homepage": "https://github.com/ShellXploit/aws-mock-data",
"author": {
"name": "Hanut Arora",
"email": "shellxploit@gmail.com"
},
"files": [
"dist/"
],
"scripts": {
"lint": "eslint src",
"pretty": "prettier --write src",
"pretty:check": "prettier --check src",
"clean": "rm -rf node_modules/ dist/ coverage/",
"build": "tsup",
"test": "bun test",
"semantic-release": "semantic-release"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"dependencies": {
"jsonwebtoken": "^9.0.3"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "4.59.0"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^25.3.3",
"@typescript-eslint/eslint-plugin": "^8.48.0",
"@typescript-eslint/parser": "^8.48.0",
"eslint": "^10.0.2",
"prettier": "^3.7.3",
"semantic-release": "^25.0.2",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
},
"packageManager": "bun@1.2.2"
}