@armandwipangestu/my-first-npm-package 1.0.0-rc.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/README.md ADDED
@@ -0,0 +1 @@
1
+ This is my first npm package release
package/bin/index.js ADDED
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env node
2
+
3
+ console.log("Hello from npm package!");
package/package.json ADDED
@@ -0,0 +1,42 @@
1
+ {
2
+ "name": "@armandwipangestu/my-first-npm-package",
3
+ "version": "1.0.0-rc.2",
4
+ "description": "Simple CLI example published with semantic-release",
5
+ "bin": {
6
+ "my-first-npm-package": "./bin/index.js"
7
+ },
8
+ "files": [
9
+ "bin"
10
+ ],
11
+ "main": "index.js",
12
+ "scripts": {
13
+ "test": "echo \"Error: no test specified\" && exit 1",
14
+ "lint": "echo \"Error: no lint specified\" && exit 1"
15
+ },
16
+ "repository": {
17
+ "type": "git",
18
+ "url": "git+https://github.com/armandwipangestu/my-first-npm-package.git"
19
+ },
20
+ "keywords": [],
21
+ "author": "",
22
+ "license": "MIT",
23
+ "publishConfig": {
24
+ "access": "public"
25
+ },
26
+ "type": "module",
27
+ "bugs": {
28
+ "url": "https://github.com/armandwipangestu/my-first-npm-package/issues"
29
+ },
30
+ "homepage": "https://github.com/armandwipangestu/my-first-npm-package#readme",
31
+ "devDependencies": {
32
+ "@semantic-release/changelog": "^6.0.3",
33
+ "@semantic-release/commit-analyzer": "^13.0.1",
34
+ "@semantic-release/exec": "^7.1.0",
35
+ "@semantic-release/git": "^10.0.1",
36
+ "@semantic-release/github": "^12.0.2",
37
+ "@semantic-release/npm": "^13.1.3",
38
+ "@semantic-release/release-notes-generator": "^14.1.0",
39
+ "conventional-changelog-conventionalcommits": "^9.1.0",
40
+ "semantic-release": "^25.0.2"
41
+ }
42
+ }