Comparing version 1.0.0 to 1.0.1
@@ -0,1 +1,2 @@ | ||
#!/usr/bin/env node | ||
"use strict"; | ||
@@ -2,0 +3,0 @@ exports.__esModule = true; |
{ | ||
"name": "pubscout", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"description": "A simple yet effective means of extracting meaningful data from NCBI and PubMed.", | ||
"main": "dist/pubscout.js", | ||
"scripts": { | ||
"build": "tsc src/pubscout.ts --outDir dist", | ||
"start": "yarn build && node src/prepend.js && node dist/pubscout.js", | ||
"build": "tsc src/pubscout.ts --outDir dist && node src/prepend.js", | ||
"start": "yarn build && node dist/pubscout.js", | ||
"test": "yarn build && tsc src/tests/cli.ts --outDir dist && mocha dist/tests/cli.js", | ||
@@ -10,0 +10,0 @@ "nyc": "nyc npm test && nyc report --reporter=text-lcov | coveralls" |
@@ -16,6 +16,6 @@ # PubScout | ||
# For yarn | ||
yarn global add @chriscates/pubscout | ||
yarn global add pubscout | ||
# For npm | ||
sudo npm install @chriscates/pubscout --global | ||
sudo npm install pubscout --global | ||
``` | ||
@@ -22,0 +22,0 @@ |
let fs = require('fs-jetpack'); | ||
let path = require('path'); | ||
let file = path.join(process.cwd(), 'dist', 'jscout.js'); | ||
let file = path.join(process.cwd(), 'dist', 'pubscout.js'); | ||
@@ -5,0 +5,0 @@ let content = fs.read(file); |
229
64166