Skip to content

Commit 55b815d

Browse files
committed
v1.0.1 (public)
0 parents  commit 55b815d

File tree

5 files changed

+45
-0
lines changed

5 files changed

+45
-0
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
coverage
2+
node_modules
3+
lib

.npmignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
node_modules
2+
test
3+
readme.md

index.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
"use strict";
2+
module.exports = {
3+
reqhere: require("@nodeutils/reqhere")
4+
};

package.json

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"name": "nodeutils",
3+
"version": "1.0.0",
4+
"description": "A collection of node utilities",
5+
"main": "index.js",
6+
"scripts": {
7+
"test": "echo \"Each package has its own test\" && exit 1"
8+
},
9+
"repository": {
10+
"type": "git",
11+
"url": "git+https://github.com/nodeutils/nodeutils.git"
12+
},
13+
"keywords": [
14+
"nodeutils",
15+
"node",
16+
"utilities"
17+
],
18+
"author": "Drew Llewellyn <drew@drew.pro> (http://drew.pro)",
19+
"license": "ISC",
20+
"bugs": {
21+
"url": "https://github.com/nodeutils/nodeutils/issues"
22+
},
23+
"homepage": "https://github.com/nodeutils/nodeutils#readme",
24+
"dependencies": {
25+
"@nodeutils/reqhere": "^1.0.1"
26+
}
27+
}

readme.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# nodeutils
2+
##### A range of node utilities to aid your development.
3+
4+
## [reqhere](https://www.npmjs.com/package/@nodeutils/reqhere)
5+
Simple straightforward tool to allow you to require locally
6+
```
7+
const reqhere = require("nodeutils").reqhere;
8+
```

0 commit comments

Comments
 (0)