-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.05 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
{
"name": "brotli-fsize",
"version": "1.0.3",
"description": "Get the brotli-compressed size of a string or buffer",
"license": "MIT",
"repository": "Developmint/brotli-fsize",
"author": {
"name": "Alexander Lichter",
"email": "[email protected]",
"url": "lichter.io"
},
"engines": {
"node": ">=11.7.0"
},
"scripts": {
"test": "yarn lint && ava",
"lint": "eslint ."
},
"files": [
"index.js"
],
"keywords": [
"app",
"tool",
"zlib",
"brotli",
"compressed",
"size",
"string",
"buffer"
],
"dependencies": {
"duplexer": "^0.1.1",
"pify": "^3.0.0"
},
"devDependencies": {
"@nuxtjs/eslint-config": "^0.0.1",
"ava": "*",
"babel-eslint": "^10.0.1",
"eslint": "^5.12.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^22.1.3",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^5.1.0",
"p-event": "^2.1.0"
}
}