-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.84 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.84 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
{
"name": "@lexicographic/keys",
"version": "1.0.2",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "Apache-2.0",
"description": "Lexicographical encoding library",
"author": "Atlassian",
"keywords": [
"encoding",
"lexicographical",
"lexicographic",
"gsi",
"global secondary index",
"dynamo",
"dynamodb",
"lsi",
"sorted keys"
],
"private": false,
"contributors": [
{
"name": "Daniel Hreben",
"email": "dhreben@atlassian.com",
"url": "https://github.com/DanielHreben"
},
{
"name": "Michael Oates",
"email": "moates@atlassian.com",
"url": "https://github.com/Myrannas"
}
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/atlassian-labs/lexicographic-keys.git"
},
"homepage": "https://github.com/atlassian-labs/lexicographic-keys/",
"files": [
"dist/",
"!dist/__test__/**"
],
"publishConfig": {
"registry": "https://packages.atlassian.com/api/npm/npm-public/",
"access": "public"
},
"scripts": {
"release": "yarn build && changeset publish",
"test": "jest --config jest.config.json",
"build": "tsc --project tsconfig.json",
"lint": "eslint ./src --config eslint.config.mts --ext .ts"
},
"packageManager": "yarn@1.22.22",
"enginesStrict": {
"node": ">=20.0.0"
},
"devDependencies": {
"@changesets/cli": "^2.30.0",
"@eslint/js": "^10.0.0",
"@types/jest": "^30.0.0",
"eslint": "^10.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-simple-import-sort": "^13.0.0",
"globals": "^17.0.0",
"jest": "^30.0.5",
"jest-matcher-specific-error": "^1.0.0",
"jiti": "^2.5.1",
"prettier": "^3.6.2",
"ts-jest": "^29.4.1",
"typescript": "^6.0.0",
"typescript-eslint": "^8.39.0"
}
}