-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 loc) · 1.39 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
{
"name": "glob-escape",
"description": "Escape glob patterns",
"version": "0.0.2",
"author": {
"name": "Sven Schönung <[email protected]> (http://sven.schoenung.org/)"
},
"homepage": "https://github.com/svenschoenung/glob-escape.git",
"repository": {
"type": "git",
"url": "git://github.com/svenschoenung/glob-escape.git"
},
"engines": {
"node": ">= 0.10"
},
"dependencies": {
},
"devDependencies": {
"chai": "^3.5.0",
"codacy-coverage": "^1.1.3",
"coveralls": "^2.11.6",
"istanbul": "^0.4.2",
"minimatch": "^3.0.2",
"mocha": "^2.2.4",
"mocha-lcov-reporter": "^1.0.0"
},
"scripts": {
"test": "istanbul cover ./node_modules/mocha/bin/_mocha test.js -x test.js --report html -- -R spec",
"coveralls": "istanbul cover ./node_modules/mocha/bin/_mocha test.js -x test.js --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"codacy": "istanbul cover ./node_modules/mocha/bin/_mocha test.js -x test.js --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/.bin/codacy-coverage && rm -rf ./coverage"
},
"keywords": [
"backslash",
"escape",
"glob",
"globbing",
"globs",
"gulpfriendly",
"match",
"matcher",
"minimatch",
"pattern",
"patterns",
"wildcard",
"wildcards"
],
"license": "MIT"
}