-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.27 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.27 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
50
{
"name": "@oresoftware/json-stream-parser",
"version": "2.0.0",
"description": "Parse JSON streams into JS objects.",
"type": "module",
"main": "./dist/main.js",
"exports": {
".": {
"types": "./dist/main.d.ts",
"import": "./dist/main.js",
"require": "./dist/cjs/main.js",
"default": "./dist/main.js"
}
},
"bin": {
"json_parser": "cli/json-parser.js"
},
"types": "./dist/main.d.ts",
"typings": "./dist/main.d.ts",
"scripts": {
"build": "npm run build:esm && npm run build:cjs",
"build:esm": "tsc -p tsconfig.json",
"build:cjs": "tsc -p tsconfig.cjs.json && node scripts/prep-cjs.mjs",
"test": "npm run build && node test/run.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ORESoftware/json-parser.git"
},
"keywords": [
"typescript",
"library",
"skeleton",
"scaffold"
],
"author": "Olegzandr von Denman",
"license": "SEE LICENSE IN license.md",
"bugs": {
"url": "https://github.com/ORESoftware/json-parser/issues"
},
"homepage": "https://github.com/ORESoftware/json-parser#readme",
"dependencies": {},
"devDependencies": {
"@types/node": "^22.0.0",
"typescript": "^5.9.3"
},
"r2g": {
"test": "node .r2g/tests/smoke-test.1.js"
}
}