-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
67 lines (67 loc) · 1.82 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
{
"name": "yajson-stream",
"version": "1.3.3",
"description": "Yet Another JSON Streaming Tool",
"scripts": {
"ts-test": "node_modules/mocha/bin/_mocha --require ts-node/register 'src/test/**/*.ts'",
"test": "node_modules/mocha/bin/_mocha 'dist/test/**/*.js'",
"antlr": "node_modules/.bin/antlr4ts -visitor -no-listener src/main/lib/path/parser/YAJS.g4",
"prepare": "gulp clean && gulp compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tsouza/yajs.git"
},
"keywords": [
"json",
"stream"
],
"author": "Thiago Souza <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tsouza/yajs/issues"
},
"main": "dist/main/main.js",
"types": "dist/main/yajs.d.ts",
"module": "dist/main/yajs.js",
"bin": {
"yajs": "dist/main/index.js"
},
"homepage": "https://github.com/tsouza/yajs#readme",
"dependencies": {
"@types/jsonpath": "^0.2.0",
"@types/lodash": "^4.14.92",
"@types/node": "^9.3.0",
"@types/through": "0.0.29",
"antlr4": "^4.7.1",
"antlr4ts": "^0.4.1-alpha.0",
"lodash": "^4.17.4",
"through": "^2.3.8"
},
"devDependencies": {
"@types/bluebird": "^3.5.19",
"@types/chai": "^4.1.0",
"@types/mocha": "^2.2.46",
"antlr4ts-cli": "^0.4.0-alpha.4",
"ascii-table": "0.0.9",
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"bluebird": "^3.5.1",
"chai": "^4.1.2",
"del": "^3.0.0",
"fast-stats": "0.0.3",
"gulp": "4.0.2",
"gulp-babel": "^7.0.0",
"gulp-copy": "^1.1.0",
"gulp-file-copy": "0.0.1",
"gulp-typescript": "^3.2.3",
"humanize-duration": "^3.12.1",
"JSONStream": "^1.3.2",
"measured": "^1.1.0",
"merge2": "^1.4.1",
"mocha": "^4.1.0",
"oboe": "^2.1.4",
"ts-node": "^4.1.0",
"typescript": "^3.7.2"
}
}