-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.2 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.2 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
{
"name": "magic-json",
"version": "1.1.5",
"description": "Parse and stringify JSON strings and files, preserving indentation and line endings.",
"author": "Stephan 'Septh' Schreiber <septh@sfr.fr> (https://github.com/Septh)",
"license": "MIT",
"keywords": [
"json",
"parse",
"stringify",
"indentation"
],
"homepage": "https://github.com/Septh/magic-json#readme",
"repository": {
"type": "git",
"url": "https://github.com/Septh/magic-json"
},
"funding": [
{
"type": "patreon",
"url": "https://patreon.com/Septh"
},
{
"type": "paypal",
"url": "https://paypal.me/septh07"
}
],
"type": "module",
"main": "./lib/magic-json.js",
"types": "./lib/magic-json.d.ts",
"files": [
"lib/magic-json.js",
"lib/magic-json.d.ts"
],
"scripts": {
"clean": "rimraf lib",
"prebuild": "npm run clean",
"build": "tsc --removeComments && tsc --emitDeclarationOnly",
"pretest": "npm run build",
"test": "npm run testOnly",
"testOnly": "node --no-warnings --test lib/*.test.js"
},
"devDependencies": {
"@types/node": "^22.15.16",
"rimraf": "^6.0.1",
"tslib": "^2.8.1",
"typescript": "^5.8.3"
}
}