@microsoft/esrp-release-test-integration 5.0.46 → 5.0.47

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 +3 -16
  2. package/index.js +5 -5
  3. package/package.json +12 -14
package/README.md CHANGED
@@ -1,16 +1,3 @@
1
- # Introduction
2
- TODO: Give a short introduction of your project. Let this section explain the objectives or the motivation behind this project.
3
- # Getting Started
4
- TODO: Guide users through getting your code up and running on their own system. In this section you can talk about:
5
- 1. Installation process
6
- 2. Software dependencies
7
- 3. Latest releases
8
- 4. API references
9
- # Build and Test
10
- TODO: Describe and show how to build your code and run the tests.
11
- # Contribute
12
- TODO: Explain how other users and developers can contribute to make your code better.
13
- If you want to learn more about creating good readme files then refer the following [guidelines](https://docs.microsoft.com/en-us/azure/devops/repos/git/create-a-readme?view=azure-devops). You can also seek inspiration from the below readme files:
14
- - [ASP.NET Core](https://github.com/aspnet/Home)
15
- - [Visual Studio Code](https://github.com/Microsoft/vscode)
16
- - [Chakra Core](https://github.com/Microsoft/ChakraCore)
1
+ # Test NPM Package
2
+
3
+ This is a test package for npm BVT (Build Verification Test).
package/index.js CHANGED
@@ -1,5 +1,5 @@
1
- function helloNpm() {
2
- return "hello NPM"
3
- }
4
-
5
- module.exports = helloNpm
1
+ module.exports = {
2
+ greet: function(name) {
3
+ return `Hello, ${name}!`;
4
+ }
5
+ };
package/package.json CHANGED
@@ -1,14 +1,12 @@
1
- {
2
- "name": "@microsoft/esrp-release-test-integration",
3
- "version": "5.0.46",
4
- "description": "With great package manager come great responsibilities.",
5
- "main": "index.js",
6
- "author": {
7
- "name": "Jai"
8
- },
9
- "license": "ISC",
10
- "dependencies": {
11
- "child_process": "^1.0.2",
12
- "npm": "^9.6.2"
13
- }
14
- }
1
+ {
2
+ "name": "@microsoft/esrp-release-test-integration",
3
+ "version": "5.0.47",
4
+ "description": "Test npm package for BVT",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "test": "echo \"Error: no test specified\" && exit 0"
8
+ },
9
+ "keywords": [],
10
+ "author": "",
11
+ "license": "MIT"
12
+ }