-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 915 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 915 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
{
"name": "@devboostsolution/jsonconverter",
"author": "LongVQ",
"version": "1.0.2",
"description": "A versatile package to serialize and deserialize JSON data to and from Python objects effortlessly.",
"repository": {
"type": "git",
"url": "git+https://github.com/DevBoostSolutions/jsonconverter.git"
},
"main": "./build/index.d.ts",
"scripts": {
"build:watch": "npx tsc -w -p ./tsconfig.build.json",
"build": "npx tsc -p ./tsconfig.build.json",
"clean": "rm -rf build && rm -rf coverage && rm -rf node_modules",
"test:watch": "jest --watch",
"test": "jest --config ./test/jest.json --verbose --runInBand"
},
"release": {
"branch": "main"
},
"keywords": [
"json",
"converter",
"serialization",
"deserialization"
],
"license": "ISC",
"devDependencies": {
"ts-jest": "^29.1.5",
"jest": "^29.7.0",
"typescript": "^5.5.3"
}
}