-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 840 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 840 Bytes
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
{
"name": "@scaleforge/joser",
"version": "0.8.3",
"description": "Javascript object serializer",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"test": "jest",
"lint": "eslint src --ext .ts",
"build": "rimraf dist && tsc --project tsconfig.build.json",
"prepublishOnly": "npm test && npm run lint && npm run build"
},
"author": "ScaleForge",
"license": "MIT",
"devDependencies": {
"@types/jest": "30.0.0",
"@types/node": "24.9.1",
"@typescript-eslint/eslint-plugin": "8.46.2",
"@typescript-eslint/parser": "8.46.2",
"eslint": "9.38.0",
"jest": "30.2.0",
"rimraf": "6.0.1",
"ts-jest": "29.4.5",
"ts-node": "10.9.2",
"typescript": "5.9.3"
},
"keywords": [
"serialization",
"json"
],
"publishConfig": {
"access": "public"
}
}