-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.31 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
{
"name": "detect-repo-changelog",
"version": "1.0.1",
"description": "Scans a repository directory, searching for a changelog file",
"main": "index.js",
"scripts": {
"lint": "eslint '{*.js,test/**/*.js}' --ignore-pattern=test/coverage",
"test": "mocha",
"test-cov": "istanbul cover --dir test/coverage _mocha -- && echo Coverage lies in test/coverage/lcov-report/index.html",
"test-travis": "istanbul cover _mocha --report lcovonly -- && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"bugs": {
"url": "https://github.com/IndigoUnited/node-detect-repo-changelog/issues/"
},
"repository": {
"type": "git",
"url": "git://github.com/IndigoUnited/node-detect-repo-changelog.git"
},
"keywords": [
"has",
"changelog",
"detect"
],
"author": "IndigoUnited <[email protected]> (http://indigounited.com)",
"license": "MIT",
"dependencies": {
"changelog-filename-regex": "^1.1.0",
"is-regular-file": "^1.0.1",
"lodash.find": "^4.6.0",
"pify": "^3.0.0"
},
"devDependencies": {
"@satazor/eslint-config": "^3.0.0",
"chai": "^4.0.2",
"coveralls": "^2.11.6",
"eslint": "^3.0.0",
"istanbul": "^0.4.1",
"mkdirp": "^0.5.1",
"mocha": "^3.0.0",
"rimraf": "^2.5.4"
},
"engines": {
"node": ">=4.0.0"
}
}