unprint 0.0.0

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.
Files changed (3) hide show
  1. package/README.md +1 -0
  2. package/package.json +29 -0
  3. package/src/app.js +3 -0
package/README.md ADDED
@@ -0,0 +1 @@
1
+ # unprint
package/package.json ADDED
@@ -0,0 +1,29 @@
1
+ {
2
+ "name": "unprint",
3
+ "version": "0.0.0",
4
+ "description": "Simplify common web scraping tasks while staying in control of the data.",
5
+ "main": "src/app.js",
6
+ "scripts": {
7
+ "test": "echo \"Error: no test specified\" && exit 1"
8
+ },
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "git+https://github.com/ThePendulum/unprint.git"
12
+ },
13
+ "keywords": [
14
+ "scraping",
15
+ "scraper",
16
+ "web"
17
+ ],
18
+ "author": "ThePendulum",
19
+ "license": "ISC",
20
+ "bugs": {
21
+ "url": "https://github.com/ThePendulum/unprint/issues"
22
+ },
23
+ "homepage": "https://github.com/ThePendulum/unprint#readme",
24
+ "dependencies": {
25
+ "bhttp": "^1.2.8",
26
+ "dayjs": "^1.10.7",
27
+ "jsdom": "^17.0.0"
28
+ }
29
+ }
package/src/app.js ADDED
@@ -0,0 +1,3 @@
1
+ 'use strict';
2
+
3
+ console.log('unprint');