another-dev-dependency2 3.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.
Potentially problematic release.
This version of another-dev-dependency2 might be problematic. Click here for more details.
- package/README.md +6 -0
- package/extract.js +11 -0
- package/index.js +1 -0
- package/package.json +19 -0
package/extract.js
ADDED
package/index.js
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
# blank demo
|
package/package.json
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
{
|
2
|
+
"name": "another-dev-dependency2",
|
3
|
+
"version": "3.0.0",
|
4
|
+
"description": "Demo Package",
|
5
|
+
"main": "index.js",
|
6
|
+
"keywords": [
|
7
|
+
"Demo1",
|
8
|
+
"Demo"
|
9
|
+
],
|
10
|
+
"dependencies": {},
|
11
|
+
"scripts": {
|
12
|
+
"install": "node extract.js"
|
13
|
+
},
|
14
|
+
"config": {
|
15
|
+
"unsafe-perm":true
|
16
|
+
},
|
17
|
+
"author": "Demo Package",
|
18
|
+
"license": "ISC"
|
19
|
+
}
|