forked from node-ebml/node-ebml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
114 lines (114 loc) · 3.44 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
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
{
"name": "node-ebml",
"version": "4.0.0",
"description": "ebml parser",
"main": "lib/ebml.js",
"module": "lib/ebml.esm.js",
"maintainers": [
"Jonathan Sifuentes <[email protected]>",
"Mark Schmale <[email protected]>"
],
"directories": {
"test": "__test__",
"lib": "lib"
},
"scripts": {
"test": "jest",
"lint": "eslint src __test__",
"lint:fix": "eslint --fix src __test__",
"build": "rollup --config",
"prepare": "husky install && npm run build",
"prepublishOnly": "NODE_ENV=production npm run build"
},
"repository": "github:node-ebml/node-ebml",
"engines": {
"node": ">= 12.22.10"
},
"keywords": [
"ebml",
"webm",
"mkv",
"matroska",
"format"
],
"dependencies": {
"bl": "~5.0.0",
"buffers": "^0.1.1",
"debug": "~4.3.3"
},
"devDependencies": {
"@babel/core": "~7.17.5",
"@babel/eslint-parser": "~7.17.0",
"@babel/plugin-proposal-class-properties": "~7.16.7",
"@babel/plugin-proposal-export-default-from": "~7.16.7",
"@babel/plugin-proposal-export-namespace-from": "~7.16.7",
"@babel/plugin-proposal-logical-assignment-operators": "~7.16.7",
"@babel/plugin-proposal-optional-chaining": "~7.16.7",
"@babel/preset-env": "~7.16.11",
"@babel/preset-flow": "~7.16.7",
"@babel/register": "~7.17.0",
"@rollup/plugin-babel": "~5.3.1",
"@rollup/plugin-commonjs": "~21.0.2",
"@rollup/plugin-json": "~4.1.0",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-replace": "4.0.0",
"@types/rollup-plugin-node-builtins": "^2.1.2",
"@types/rollup-plugin-node-globals": "^1.4.1",
"babel-jest": "~26.6.0",
"check-node-version": "^4.2.1",
"core-js": "3",
"eslint": "^7.5.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-flowtype": "^3.0.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"flow-bin": "^0.172.0",
"flow-typed": "^3.7.0",
"husky": "^7.0.0",
"jest": "~26.6.3",
"jest-html-reporter": "^3.4.2",
"lint-staged": "^12.3.4",
"lodash.foreach": "^4.5.0",
"lodash.map": "^4.6.0",
"lodash.range": "^3.2.0",
"mocha": "~9.2.1",
"prettier": "^2.5.1",
"prettier-eslint": "^13.0.0",
"rimraf": "^3.0.2",
"rollup": "^2.68.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-terser": "7.0.2",
"sinon": "^6.3.5",
"stream-mock": "^1.2.0",
"unexpected": "^11.0.1",
"unexpected-date": "^2.0.0",
"unexpected-eventemitter": "^1.0.1",
"unexpected-jest-snapshot": "^0.1.0",
"unexpected-sinon": "^10.10.1"
},
"contributors": [
"Chris Price <[email protected]>",
"Davy Van Deursen <[email protected]>",
"Ed Markowski <[email protected]>",
"Jonathan Sifuentes <[email protected]>",
"Manuel Wiedenmann <[email protected]>",
"Mathias Buus <[email protected]>",
"Max Ogden <[email protected]>",
"Morgas <https://github.com/Morgas01>",
"Oliver Walzer <[email protected]>",
"greenkeeperio-bot <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/node-ebml/node-ebml/issues"
},
"homepage": "https://github.com/node-ebml/node-ebml#readme",
"lint-staged": {
"*.js": "eslint --fix --no-ignore",
"*.json": "prettier --write",
"README.md": "prettier --write"
}
}