edu-npm-helper-beta 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.
package/LICENSE ADDED
@@ -0,0 +1,4 @@
1
+ UNLICENSED
2
+
3
+ This package is for local educational demonstrations only.
4
+ Do not publish it to a public package registry.
package/README.md ADDED
@@ -0,0 +1,5 @@
1
+ # edu-npm-helper-beta
2
+
3
+ 교육용 npm dependency-chain 데모의 두 번째 정상 helper dependency.
4
+
5
+ 설치 스크립트 없음. 파일 읽기 없음. 네트워크 요청 없음.
package/index.js ADDED
@@ -0,0 +1,6 @@
1
+ 'use strict';
2
+
3
+ module.exports = {
4
+ name: 'edu-npm-helper-beta',
5
+ role: 'benign helper dependency'
6
+ };
package/package.json ADDED
@@ -0,0 +1,22 @@
1
+ {
2
+ "name": "edu-npm-helper-beta",
3
+ "version": "1.0.0",
4
+ "description": "Second benign helper dependency for the educational npm dependency-chain demo.",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "pack:dry-run": "npm pack --dry-run"
8
+ },
9
+ "files": [
10
+ "index.js",
11
+ "README.md",
12
+ "LICENSE"
13
+ ],
14
+ "keywords": [
15
+ "education",
16
+ "security",
17
+ "npm",
18
+ "benign-demo-dependency"
19
+ ],
20
+ "author": "",
21
+ "license": "UNLICENSED"
22
+ }