vl8128-npm-practice-tutorial 1.0.0 → 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.
Files changed (3) hide show
  1. package/README.md +6 -0
  2. package/package.json +21 -5
  3. package/test.js +1 -0
package/README.md ADDED
@@ -0,0 +1,6 @@
1
+ \# npm-practice
2
+
3
+
4
+
5
+ This is my first npm tutorial package for learning purposes.
6
+
package/package.json CHANGED
@@ -1,9 +1,25 @@
1
1
  {
2
2
  "name": "vl8128-npm-practice-tutorial",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "My first npm tutorial package",
5
- "main": "index.js",
6
- "author": "vl8128",
5
+ "keywords": [],
6
+ "homepage": "https://github.com/username/npm-practice#readme",
7
+ "bugs": {
8
+ "url": "https://github.com/username/npm-practice/issues"
9
+ },
10
+ "repository": {
11
+ "type": "git",
12
+ "url": "https://github.com/vl8128/npm-practice.git"
13
+ },
7
14
  "license": "MIT",
8
- "type": "commonjs"
9
- }
15
+ "author": "vl8128",
16
+ "type": "commonjs",
17
+ "main": "index.js",
18
+ "scripts": {
19
+ "test": "node test.js"
20
+ },
21
+ "dependencies": {
22
+ "@linclark/pkg": "^1.0.3",
23
+ "lodash": "^4.18.1"
24
+ }
25
+ }
package/test.js ADDED
@@ -0,0 +1 @@
1
+ console.log("Test script");