-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1006 Bytes
/
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
{
"name": "@tsmetadata/json-api",
"version": "1.0.0",
"description": "Standardized set of JSON:API metadata decorators.",
"author": "Ryan Huellen <[email protected]>",
"keywords": ["json", "api", "metadata", "typescript", "ts"],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/tsmetadata/json-api.git"
},
"publishConfig": {
"access": "public"
},
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"build": "npm run clean && tsc",
"clean": "rm -rf ./lib",
"fix": "biome check --write .",
"lint": "biome lint .",
"verify": "biome ci . && npm run test",
"test": "jest --coverage"
},
"dependencies": {
"@tsmetadata/polyfill": "^1.1.3"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/chance": "^1.1.6",
"@types/jest": "^29.5.14",
"chance": "^1.1.12",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
}
}