vertz 0.0.1
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 +21 -0
- package/index.js +10 -0
- package/package.json +26 -0
package/README.md
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# vertz
|
|
2
|
+
|
|
3
|
+
This is a placeholder package to secure the `vertz` package name on npm.
|
|
4
|
+
|
|
5
|
+
This package is maintained by the [@vertz](https://www.npmjs.com/org/vertz) organization.
|
|
6
|
+
|
|
7
|
+
For the actual Vertz framework packages, please see:
|
|
8
|
+
- [@vertz/core](https://www.npmjs.com/package/@vertz/core)
|
|
9
|
+
- [@vertz/compiler](https://www.npmjs.com/package/@vertz/compiler)
|
|
10
|
+
- [@vertz/codegen](https://www.npmjs.com/package/@vertz/codegen)
|
|
11
|
+
- And other packages under the @vertz scope
|
|
12
|
+
|
|
13
|
+
## Installation
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
npm install vertz
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
## License
|
|
20
|
+
|
|
21
|
+
MIT
|
package/index.js
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Placeholder package to secure the vertz package name on npm.
|
|
3
|
+
* This package is maintained by the @vertz organization.
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
module.exports = {
|
|
7
|
+
name: 'vertz',
|
|
8
|
+
version: '0.0.1',
|
|
9
|
+
description: 'Placeholder package to secure the vertz package name'
|
|
10
|
+
};
|
package/package.json
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "vertz",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Placeholder package to secure the vertz package name",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"files": [
|
|
7
|
+
"index.js",
|
|
8
|
+
"README.md"
|
|
9
|
+
],
|
|
10
|
+
"scripts": {
|
|
11
|
+
"prepublishOnly": "echo 'Publishing vertz placeholder package'"
|
|
12
|
+
},
|
|
13
|
+
"repository": {
|
|
14
|
+
"type": "git",
|
|
15
|
+
"url": "https://github.com/blimu-dev/vertz"
|
|
16
|
+
},
|
|
17
|
+
"author": "viniciusdacal",
|
|
18
|
+
"license": "MIT",
|
|
19
|
+
"keywords": [
|
|
20
|
+
"vertz",
|
|
21
|
+
"placeholder"
|
|
22
|
+
],
|
|
23
|
+
"publishConfig": {
|
|
24
|
+
"access": "public"
|
|
25
|
+
}
|
|
26
|
+
}
|