forked from isaacs/sax-js
-
Notifications
You must be signed in to change notification settings - Fork 77
/
package.json
54 lines (54 loc) · 1.41 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
{
"name": "clarinet",
"description": "SAX based evented streaming JSON parser in JavaScript (browser and node)",
"author": "Nuno Job <[email protected]> (http://nunojob.com/)",
"contributors": [
"Jann Horn (https://github.com/thejh)",
"Justin Makeig <[email protected]> (http://www.audiblepop.com)",
"Roly Fentanes (http://about.me/roly)",
"John Lancaster (http://jlank.com)"
],
"version": "0.12.5",
"main": "./clarinet.js",
"homepage": "https://github.com/dscape/clarinet",
"repository": {
"type": "git",
"url": "http://github.com/dscape/clarinet.git"
},
"bugs": {
"url": "http://github.com/dscape/clarinet/issues"
},
"runkitExampleFilename": "example.js",
"keywords": [
"sax",
"json",
"parser",
"stream",
"streaming",
"event",
"events",
"emitter",
"async",
"streamer",
"browser"
],
"devDependencies": {
"mocha": "^6.1.4",
"should": "1.0.x",
"underscore": "1.2.3"
},
"scripts": {
"test": "mocha -r should -t 10000 -s 2000 test/parser.spec.js test/clarinet.js test/npm.js test/utf8-chunks.js test/positions.js",
"bench": "cd benchmark && npm test",
"prebench": "cd benchmark && test -e node_modules || npm i --ignore-scripts"
},
"engines": {
"node": ">=0.3.6",
"firefox": ">=0.8.0",
"chrome": ">=16.0.912"
},
"directories": {
"test": "test"
},
"license": "BSD-2-Clause"
}