-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
42 lines (42 loc) · 1.09 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
{
"name": "detect-readme-badges",
"version": "1.4.0",
"description": "Scans a repository's readme file, searching for badges",
"main": "index.js",
"scripts": {
"lint": "eslint *.js lib test",
"test": "npm run lint && ava test/spec --tap | tap-nyan",
"test:simple": "ava test/spec",
"test:cov": "nyc ava test/spec --reporter=lcov && echo coverage report: coverage/lcov-report/index.html"
},
"bugs": {
"url": "https://github.com/IndigoUnited/node-detect-readme-badges/issues/"
},
"repository": {
"type": "git",
"url": "git://github.com/IndigoUnited/node-detect-readme-badges.git"
},
"keywords": [
"badge",
"badges",
"readme",
"scan"
],
"author": "IndigoUnited <[email protected]> (http://indigounited.com)",
"license": "MIT",
"engines": {
"node": ">=4.0.0"
},
"devDependencies": {
"@carsy/eslint-config": "^0.4.0",
"ava": "^0.25.0",
"coveralls": "^3.0.0",
"eslint": "^4.19.1",
"nyc": "^11.7.1",
"tap-nyan": "1.1.0"
},
"dependencies": {
"get-urls": "^7.2.0",
"require-directory": "^2.1.1"
}
}