-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.38 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
{
"name": "normalize-glob",
"version": "0.0.2",
"description": "Normalize a glob pattern by expanding braces, making it absolute and resolving parent directories '..'",
"main": "dist/index",
"files": [
"dist/*.*"
],
"scripts": {
"compile": "tsc -p .",
"test": "ava",
"test-coverage": "nyc run-s test",
"lint": "run-p lint:*",
"lint:valtyr": "wotan -m @fimbul/valtyr",
"lint:wotan": "wotan",
"verify": "run-s compile lint test-coverage",
"report-coverage": "codecov --disable=gcov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ajafff/normalize-glob.git"
},
"keywords": [
"glob",
"absolute",
"resolve",
"normalize",
"expand"
],
"author": "Klaus Meinhardt",
"license": "MIT",
"bugs": {
"url": "https://github.com/ajafff/normalize-glob/issues"
},
"homepage": "https://github.com/ajafff/normalize-glob#readme",
"devDependencies": {
"@fimbul/valtyr": "^0.21.0",
"@fimbul/wotan": "^0.21.0",
"@types/brace-expansion": "^1.1.0",
"@types/is-negated-glob": "^1.0.0",
"@types/node": "^10.9.4",
"ava": "^2.0.0",
"codecov": "^3.1.0",
"npm-run-all": "^4.1.3",
"nyc": "^13.0.1",
"tslint": "^5.11.0",
"tslint-consistent-codestyle": "^1.13.3",
"typescript": "~3.9.0"
},
"dependencies": {
"brace-expansion": "^1.1.11",
"is-negated-glob": "^1.0.0"
}
}