-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.18 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"author": "Daniele Ricci <[email protected]> (https://github.com/iccicci)",
"bugs": "https://github.com/iccicci/next-json/issues",
"contributors": [
"Daniele Ricci <[email protected]> (https://github.com/iccicci)"
],
"description": "Next JavaScript Object Notation",
"devDependencies": {
"@stylistic/eslint-plugin-js": "3.0.0",
"@types/express": "5.0.0",
"@types/jest": "29.5.14",
"@types/node": "22.12.0",
"eslint": "9.19.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-simple-import-sort": "12.1.1",
"eslint-plugin-sort-keys": "2.3.5",
"express": "4.21.1",
"jest": "29.7.0",
"jest-environment-node-single-context": "29.4.0",
"peggy": "4.2.0",
"prettier": "3.4.2",
"ts-jest": "29.2.5",
"ts-pegjs": "4.2.1",
"tsx": "4.19.2",
"typescript": "5.7.3",
"typescript-eslint": "8.22.0"
},
"engines": {
"node": ">=14.0"
},
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts"
}
},
"funding": {
"url": "https://github.com/iccicci/next-json#donating"
},
"homepage": "https://github.com/iccicci/next-json#readme",
"keywords": [
"bigint",
"buffer",
"date",
"eval",
"infinity",
"javascript",
"json",
"map",
"nan",
"parse",
"regexp",
"set",
"stringify",
"undefined"
],
"license": "MIT",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"name": "next-json",
"prettier": {
"arrowParens": "avoid",
"endOfLine": "lf",
"jsxBracketSameLine": true,
"printWidth": 200,
"trailingComma": "none",
"useTabs": false
},
"readmeFilename": "README.md",
"repository": "https://github.com/iccicci/next-json",
"scripts": {
"build": "make build",
"coverage": "TZ=Europe/Rome jest --coverage",
"deploy": "make deploy",
"lint": "eslint . --report-unused-disable-directives --max-warnings 0",
"parser": "typescript",
"precoverage": "make",
"pretest": "make",
"test": "TZ=Europe/Rome jest"
},
"sideEffects": false,
"type": "module",
"types": "./dist/types/index.d.ts",
"version": "0.4.0"
}