-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.19 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
{
"name": "@apexearth/egrep",
"version": "1.0.9",
"description": "egrep for node!",
"main": "src/index.js",
"scripts": {
"test": "npm run lint && npm run mocha",
"mocha": "mocha src/**/*.spec.js",
"lint": "eslint src/**/*.js",
"coverage": "nyc npm test",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/apexearth/egrep.git"
},
"keywords": [
"grep",
"egrep",
"cli",
"search",
"utility"
],
"bin": {
"node-egrep": "src/cli.js"
},
"author": "Christopher Jacobs <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/apexearth/egrep/issues"
},
"homepage": "https://github.com/apexearth/egrep#readme",
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.0.2",
"eslint": "^5.12.1",
"mocha": "^7.1.1",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^14.1.1"
},
"dependencies": {
"commander": "^2.19.0",
"glob": "^7.1.3",
"recursive-readdir": "^2.2.2",
"upath": "^1.1.0"
},
"nyc": {
"exclude": [
"src/**/*.spec.js"
]
},
"publishConfig": {
"access": "public"
}
}