-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
123 lines (123 loc) · 3.52 KB
/
package.json
File metadata and controls
123 lines (123 loc) · 3.52 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "@hodonsky/node-avro",
"version": "1.0.0",
"description": "NodeJS AVRO Helpers for @hodonsky/node-gateway and @hodonsky/node-service",
"main": "./bin/index.js",
"directories": {
"lib": "lib",
"tests": "tests"
},
"scripts": {
"test": "mocha --exit --require @babel/register ./tests",
"build": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hodonsky/node-avro.git"
},
"keywords": [
"donsky",
"@donsky",
"node-avro",
"node avro",
"avro",
"avsc",
"nodejs",
"node"
],
"author": "eric.hodonsky@gmail.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/hodonsky/node-avro/issues"
},
"homepage": "https://github.com/hodonsky/node-avro#readme",
"engines": {
"node": ">=12.13.1",
"npm": ">=6.14.6"
},
"dependencies": {
"avsc": "^5.4.21"
},
"devDependencies": {
"@babel/cli": "^7.10.4",
"@babel/core": "^7.10.4",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-do-expressions": "^7.10.4",
"@babel/plugin-proposal-export-default": "^7.0.0-beta.32",
"@babel/plugin-proposal-export-default-from": "^7.10.4",
"@babel/plugin-proposal-export-namespace": "^7.0.0-beta.32",
"@babel/plugin-proposal-export-namespace-from": "^7.10.4",
"@babel/plugin-proposal-function-bind": "^7.10.4",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.10.4",
"@babel/plugin-proposal-object-rest-spread": "^7.10.4",
"@babel/plugin-proposal-optional-chaining": "^7.10.4",
"@babel/plugin-proposal-partial-application": "^7.10.4",
"@babel/plugin-proposal-pipeline-operator": "^7.10.4",
"@babel/plugin-proposal-private-methods": "^7.10.4",
"@babel/plugin-proposal-throw-expressions": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@babel/register": "^7.10.5",
"babel-eslint": "^11.0.0-beta.0",
"babel-loader": "^8.1.0",
"babel-plugin-module-resolver": "^4.0.0",
"babel-preset-minify": "^0.5.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^7.6.0",
"eslint-loader": "^4.0.2",
"exports-loader": "^1.1.0",
"mocha": "^8.0.1",
"rimraf": "^3.0.2",
"sinon": "^9.0.2",
"terser-webpack-plugin": "^4.0.0",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-node-externals": "^2.5.0"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"esmodules": true
}
}
],
[
"minify",
{
"mangle": true
}
]
],
"plugins": [
"@babel/plugin-proposal-class-properties",
"@babel/plugin-proposal-private-methods",
"@babel/plugin-proposal-optional-chaining",
"@babel/plugin-proposal-export-default",
"@babel/plugin-proposal-export-default-from",
"@babel/plugin-proposal-export-namespace",
"@babel/plugin-proposal-export-namespace-from",
"@babel/plugin-proposal-nullish-coalescing-operator",
"@babel/plugin-proposal-throw-expressions",
"@babel/plugin-proposal-do-expressions",
"@babel/plugin-proposal-function-bind",
"@babel/plugin-proposal-partial-application",
"@babel/plugin-proposal-object-rest-spread",
[
"@babel/plugin-proposal-pipeline-operator",
{
"proposal": "fsharp"
}
]
],
"ignore": [
"node_modules/**/*",
"./*.test.js",
"tests/**"
],
"sourceMaps": false
}
}