-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 844 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 844 Bytes
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
{
"name": "ffv-validator",
"version": "0.0.5",
"description": "File format validation project is responsible to check if file contents match provided extension",
"main": "src/index.js",
"files": [
"src/"
],
"scripts": {
"git-tag": "./version.sh",
"test:coverage": "node node_modules/jest/bin/jest.js --config=jest.json --no-cache --coverage"
},
"keywords": [
"ffv",
"stream",
"file-extension",
"file",
"security",
"validation"
],
"author": "Dimitris Klouvas <dimitris.klouvas@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/dimkl/ffv#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/dimkl/ffv.git"
},
"bugs": {
"url": "https://github.com/dimkl/ffv/issues"
},
"engines": {
"npm": ">=5.5.0",
"node": ">=12.0.0"
}
}