@uphold/prt 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.
Files changed (3) hide show
  1. package/README.md +2 -0
  2. package/index.js +5 -0
  3. package/package.json +24 -0
package/README.md ADDED
@@ -0,0 +1,2 @@
1
+ # prt
2
+ PRT - Public Release Test - GitHub and NPM release test repository
package/index.js ADDED
@@ -0,0 +1,5 @@
1
+ 'use strict';
2
+
3
+ module.exports = {
4
+ name: '@uphold/prt'
5
+ };
package/package.json ADDED
@@ -0,0 +1,24 @@
1
+ {
2
+ "name": "@uphold/prt",
3
+ "version": "1.0.0",
4
+ "description": "PRT - Public Release Test - GitHub and NPM release test repository",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "test": "echo \"Error: no test specified\" && exit 1"
8
+ },
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "git+https://github.com/uphold/prt.git"
12
+ },
13
+ "keywords": [],
14
+ "author": "Uphold",
15
+ "license": "MIT",
16
+ "type": "commonjs",
17
+ "publishConfig": {
18
+ "access": "public"
19
+ },
20
+ "bugs": {
21
+ "url": "https://github.com/uphold/prt/issues"
22
+ },
23
+ "homepage": "https://github.com/uphold/prt#readme"
24
+ }