-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.18 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.18 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
{
"name": "streamy-json-parser",
"version": "1.0.5",
"description": "A JSON parser that receives its input as a stream of strings",
"type": "module",
"exports": {
".": {
"browser": "./dist/streamy-json-parser.min.js",
"import": "./dist/index.esm.js",
"require": "./dist/index.js"
}
},
"files" : [
"dist",
"src"
],
"scripts": {
"test": "node test/success_test.js && node test/failure_test.js",
"testperf": "node test/perf_test.js",
"build": "rollup -c",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vtst/streamy-json-parser.git"
},
"keywords": [
"json",
"parser",
"streaming"
],
"author": "Vincent Simonet",
"license": "MIT",
"bugs": {
"url": "https://github.com/vtst/streamy-json-parser/issues"
},
"homepage": "https://github.com/vtst/streamy-json-parser#readme",
"devDependencies": {
"@babel/cli": "^7.28.3",
"@babel/core": "^7.28.4",
"@babel/preset-env": "^7.28.3",
"@rollup/plugin-babel": "^6.0.4",
"benchmark": "^2.1.4",
"rollup": "^2.79.2",
"rollup-plugin-terser": "^7.0.2",
"seedrandom": "^3.0.5"
}
}