This repository was archived by the owner on Oct 27, 2022. It is now read-only.
forked from jimhigson/oboe.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.41 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.41 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "oboe",
"title": "Oboe.js",
"version": "3.0.0",
"description": "Oboe.js reads json, giving you the objects as they are found without waiting for the stream to finish",
"main": "./dist/oboe-node.js",
"browser": {
"./dist/oboe-node.js": "./dist/oboe-browser.js",
"./src/streamingHttp.node.js": "./src/streamingHttp.browser.js"
},
"scripts": {
"webpack": "webpack",
"standard": "standard"
},
"repository": {
"type": "git",
"url": "https://github.com/jimhigson/oboe.js.git"
},
"keywords": [
"json",
"parser",
"stream",
"progressive",
"http",
"sax",
"event",
"emitter",
"async",
"browser"
],
"homepage": "http://oboejs.com",
"author": "Jim Higson",
"license": "BSD",
"readmeFilename": "README.md",
"devDependencies": {
"webpack": "^5.68.0",
"webpack-cli": "^4.9.2"
},
"dependencies": {
"http-https": "^1.0.0"
},
"jam": {
"main": "dist/oboe-browser.js",
"include": [
"dist/oboe-browser.js",
"LICENCE",
"package.json",
"README.md"
],
"dependencies": {},
"categories": [
"AJAX & Websockets",
"Parsers & Compilers"
]
},
"standard": {
"ignore": [
"node_modules/**",
"dist",
"test/require",
"test/libs/es5-*.js"
],
"env": "jasmine",
"globals": [
"Platform",
"crossDomainUrl",
"XMLHttpRequest"
]
}
}