-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 796 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 796 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
36
37
38
39
40
41
42
{
"name": "valid-path",
"version": "2.1.0",
"description": "Checks if provided string looks like a valid path",
"main": "index.js",
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/itentika/valid-path.git"
},
"keywords": [
"validation",
"valid",
"path",
"check",
"char",
"character",
"filepath",
"glob",
"invalid",
"match",
"pattern",
"regexp",
"string",
"test",
"validate"
],
"author": "Itentika",
"license": "MIT",
"bugs": {
"url": "https://github.com/itentika/valid-path/issues"
},
"homepage": "https://github.com/itentika/valid-path#readme",
"dependencies": {
"is-glob": "^4.0.3"
},
"devDependencies": {
"jest": "^28.1.3"
}
}