-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.58 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
{
"name": "is-file-equal-buffer",
"description": "Compare file contents with buffer",
"version": "1.0.4",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/awwit/node-is-file-equal-buffer"
},
"bugs": {
"url": "https://github.com/awwit/node-is-file-equal-buffer/issues"
},
"author": "Ignat Awwit <[email protected]>",
"keywords": [
"file",
"comparison",
"compare",
"equal",
"buffer"
],
"main": "dist/index.js",
"files": [
"dist/**/*.js",
"dist/index.d.ts"
],
"engines": {
"node": ">=8.0.0"
},
"sideEffects": false,
"scripts": {
"prebuild": "rimraf ./dist",
"build": "tsc",
"prepack": "yarn build",
"pub": "yarn publish",
"eslint": "eslint --fix src/*.ts test/*.ts",
"tc": "tsc --noEmit",
"test": "jest ./test",
"prepare": "husky install"
},
"devDependencies": {
"@babel/preset-env": "7.14.5",
"@babel/preset-typescript": "7.14.5",
"@types/jest": "26.0.23",
"@types/node": "15.12.4",
"@types/uuid": "8.3.0",
"@typescript-eslint/eslint-plugin": "4.27.0",
"@typescript-eslint/parser": "4.27.0",
"eslint": "7.29.0",
"eslint-config-prettier": "8.3.0",
"eslint-config-standard": "16.0.3",
"eslint-plugin-import": "2.23.4",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-promise": "5.1.0",
"eslint-plugin-standard": "5.0.0",
"graceful-fs": "4.2.6",
"husky": "6.0.0",
"jest": "27.0.4",
"prettier": "2.3.1",
"rimraf": "3.0.2",
"typescript": "4.3.4"
}
}