-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
30 lines (30 loc) · 934 Bytes
/
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
{
"name": "taxonfinder",
"version": "1.1.0",
"description": "Detects scientific names in text",
"homepage": "http://taxonfinder.org/",
"main": "index.js",
"scripts": {
"test": "make test",
"test-coverage": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec",
"coveralls": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/pleary/node-taxonfinder.git"
},
"keywords": [
"taxonfinder"
],
"author": "Patrick Leary <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/pleary/node-taxonfinder/issues"
},
"devDependencies": {
"mocha": "~1.18.2",
"chai": "~1.9.1",
"coveralls": "~2.10.0",
"mocha-lcov-reporter": "0.0.1"
}
}