-
-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.81 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.81 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "ts-japi",
"version": "1.12.3",
"description": "A highly-modular (typescript-friendly)-framework agnostic library for serializing data to the JSON:API specification",
"main": "lib/index.js",
"packageManager": "pnpm@10.31.0+sha512.e3927388bfaa8078ceb79b748ffc1e8274e84d75163e67bc22e06c0d3aed43dd153151cbf11d7f8301ff4acb98c68bdc5cadf6989532801ffafe3b3e4a63c268",
"scripts": {
"benchmark": "ts-node ./benchmarks/serializer.benchmark",
"build": "tsc",
"clean": "make clean",
"commitlint": "commitlint --from=HEAD~1",
"format": "ultracite fix",
"examples": "ts-node ./examples/",
"lint": "ultracite check",
"playground": "ts-node ./benchmarks/playground.benchmark",
"prepare": "test -n \"$CI\" || lefthook install",
"test": "jest --runInBand --verbose --coverage",
"test:watch": "jest --runInBand --verbose --watch"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"author": "Mathematic Inc",
"license": "Apache-2.0",
"keywords": [
"json:api",
"json-api",
"serializer",
"normalizer",
"typescript"
],
"repository": {
"type": "git",
"url": "https://github.com/mathematic-inc/ts-japi.git"
},
"engines": {
"node": ">=24"
},
"devDependencies": {
"@babel/cli": "^7.28.6",
"@babel/core": "^7.29.0",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-export-namespace-from": "^7.18.9",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/preset-env": "^7.29.0",
"@babel/preset-typescript": "^7.28.5",
"@biomejs/biome": "^2.4.6",
"@changesets/cli": "^2.30.0",
"@commitlint/cli": "^20.4.3",
"@commitlint/config-conventional": "^20.4.3",
"@types/benchmark": "^2.1.5",
"@types/jest": "^30.0.0",
"@types/lodash": "^4.17.24",
"@types/node": "^25.4.0",
"@types/uuid": "^11.0.0",
"babel-jest": "^30.3.0",
"benchmark": "^2.1.4",
"core-js": "^3.48.0",
"jest": "^30.3.0",
"lefthook": "^2.1.3",
"lodash": "^4.17.23",
"npm-run-all": "^4.1.5",
"regenerator-runtime": "^0.14.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"ultracite": "^7.2.5",
"uuid": "^13.0.0"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-typescript"
],
"plugins": [
"@babel/proposal-class-properties",
"@babel/proposal-object-rest-spread",
"@babel/plugin-proposal-export-namespace-from"
]
},
"pnpm": {
"onlyBuiltDependencies": [
"@biomejs/biome",
"esbuild",
"lefthook"
]
},
"jest": {
"clearMocks": true,
"collectCoverageFrom": [
"lib/**/*.js"
],
"coverageDirectory": "coverage",
"setupFiles": [
"core-js",
"./test/setup/per-test.ts"
],
"testEnvironment": "node"
}
}