@atlassian-test/sox-package-b 1.0.2

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.
package/.npmrc-private ADDED
@@ -0,0 +1,3 @@
1
+ registry=https://packages.stg.atlassian.com/artifactory/api/npm/atlassian-npm/
2
+
3
+ //packages.stg.atlassian.com/artifactory/api/npm/atlassian-npm/:_authToken=${PAC_STG_TOKEN}
package/.npmrc-public ADDED
@@ -0,0 +1,3 @@
1
+ registry=https://packages.stg.atlassian.com/artifactory/api/npm/npm-public/
2
+
3
+ //packages.stg.atlassian.com/artifactory/api/npm/npm-public/:_authToken=${PAC_STG_TOKEN}
package/READMED.md ADDED
@@ -0,0 +1,14 @@
1
+ # Publish test package to npm-private
2
+
3
+ ```shell
4
+ ln -sfF .npmrc-private .npmrc
5
+ npm publish --verbose
6
+ ```
7
+
8
+
9
+ # Publish test package to npm-public
10
+
11
+ ```shell
12
+ ln -sfF .npmrc-public .npmrc
13
+ npm publish --verbose
14
+ ```
package/index.js ADDED
@@ -0,0 +1,3 @@
1
+ function main() {
2
+ println("hello world");
3
+ }
package/package.json ADDED
@@ -0,0 +1,12 @@
1
+ {
2
+ "name": "@atlassian-test/sox-package-b",
3
+ "version": "1.0.2",
4
+ "description": "test package only",
5
+ "license": "ISC",
6
+ "author": "",
7
+ "type": "commonjs",
8
+ "main": "index.js",
9
+ "scripts": {
10
+ "test": "echo \"Error: no test specified\" && exit 1"
11
+ }
12
+ }