-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.61 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
{
"name": "glob-extra",
"version": "5.0.2",
"description": "Utility which provides expanding of masks, dirs and files to absolute file paths.",
"bugs": "https://github.com/gemini-testing/glob-extra/issues",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"build": "tsc --build",
"lint": "eslint .",
"test-unit": "mocha test",
"prepublishOnly": "npm run build",
"pretest": "npm run build",
"test": "npm run lint && npm run test-unit",
"cover": "istanbul cover _mocha test",
"coveralls": "npm i coveralls && npm run cover -- --report lcovonly && cat ./coverage/lcov.info | coveralls"
},
"engines": {
"node": ">= 8"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/gemini-testing/glob-extra.git"
},
"keywords": [
"expand",
"paths",
"masks"
],
"dependencies": {
"bluebird": "^3.5.1",
"fast-glob": "^3.2.4",
"glob": "^7.0.5",
"lodash": "^4.15.0",
"minimatch": "^3.0.4",
"normalize-path": "^3.0.0"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.1",
"@types/bluebird": "^3.5.36",
"@types/lodash": "^4.14.177",
"@types/minimatch": "^3.0.5",
"@types/node": "^8.10.66",
"@types/normalize-path": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"chai": "^3.4.1",
"chai-as-promised": "^5.3.0",
"eslint": "^6.8.0",
"eslint-config-gemini-testing": "^2.2.0",
"istanbul": "^0.4.5",
"mocha": "^2.4.5",
"proxyquire": "^1.7.3",
"sinon": "^4.1.4",
"typescript": "^4.5.2"
}
}