-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 979 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 979 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
37
38
39
40
{
"name": "@247grad/system-text-json-refs",
"version": "1.0.1",
"description": "Parses System.Text.Json references",
"keywords": [
"json",
"ref",
"parser",
"csharp",
"dotnet"
],
"author": {
"name": "Lukas Härtel",
"email": "lukas.haertel@247grad.de",
"url": "https://247grad.de"
},
"main": "dist/index.js",
"module": "dist/index.es.js",
"declaration": "dist/index.d.ts",
"license": "MIT",
"homepage": "https://github.com/247GRAD/system-text-json-refs",
"repository": {
"type": "git",
"url": "https://github.com/247GRAD/system-text-json-refs.git"
},
"scripts": {
"start": "rollup -c rollup.config.js -w",
"build": "rollup -c rollup.config.js"
},
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.6",
"@types/jest": "^29.5.11",
"jest": "^29.7.0",
"rollup": "^4.9.6",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"typescript": "^5.3.3"
}
}