@khanacademy/wonder-stuff-tool-publish-new-pkg 0.0.1

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 +4 -0
  2. package/index.js +1 -0
  3. package/package.json +20 -0
package/README.md ADDED
@@ -0,0 +1,4 @@
1
+ This package is being published as a placeholder for the
2
+ @khanacademy/wonder-stuff-tool-publish-new-pkg library. This will enable
3
+ us to configure Trusted Publishing (which can't be enabled
4
+ until the package has been published at least once).
package/index.js ADDED
@@ -0,0 +1 @@
1
+ throw new Error("Not implemented");
package/package.json ADDED
@@ -0,0 +1,20 @@
1
+ {
2
+ "name": "@khanacademy/wonder-stuff-tool-publish-new-pkg",
3
+ "description": "Placeholder package for @khanacademy/wonder-stuff-tool-publish-new-pkg",
4
+ "author": "Khan Academy <opensource+npm@khanacademy.org>",
5
+ "license": "MIT",
6
+ "version": "0.0.1",
7
+ "publishConfig": {
8
+ "access": "public"
9
+ },
10
+ "repository": {
11
+ "type": "git",
12
+ "url": "git+https://github.com/Khan/wonder-stuff.git",
13
+ "directory": "packages/wonder-stuff-tool-publish-new-pkg"
14
+ },
15
+ "bugs": {
16
+ "url": "https://github.com/Khan/wonder-stuff/issues"
17
+ },
18
+ "module": "index.js",
19
+ "main": "index.js"
20
+ }