flaghoist 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 +13 -0
- package/bin.js +5 -0
- package/package.json +25 -0
package/README.md
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# flaghoist
|
|
2
|
+
|
|
3
|
+
**Reserved.** This name belongs to the [Flaghoist](https://github.com/flaghoist/flaghoist)
|
|
4
|
+
project — an open-source, OpenFeature-native feature-flag service you self-host in five minutes,
|
|
5
|
+
for $0.
|
|
6
|
+
|
|
7
|
+
The real `flaghoist` CLI — scaffold, deploy, and manage your own flag service — publishes here
|
|
8
|
+
soon. In the meantime:
|
|
9
|
+
|
|
10
|
+
- **Repo:** https://github.com/flaghoist/flaghoist
|
|
11
|
+
- **Packages:** the [`@flaghoist`](https://www.npmjs.com/org/flaghoist) scope
|
|
12
|
+
|
|
13
|
+
Apache-2.0.
|
package/bin.js
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "flaghoist",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Reserved for the Flaghoist CLI — hoist your own feature flags. Coming soon.",
|
|
5
|
+
"license": "Apache-2.0",
|
|
6
|
+
"author": "Damilola Oluwafemi",
|
|
7
|
+
"homepage": "https://github.com/flaghoist/flaghoist",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "git+https://github.com/flaghoist/flaghoist.git"
|
|
11
|
+
},
|
|
12
|
+
"keywords": [
|
|
13
|
+
"feature-flags",
|
|
14
|
+
"feature-flag",
|
|
15
|
+
"openfeature",
|
|
16
|
+
"ofrep",
|
|
17
|
+
"self-hosted"
|
|
18
|
+
],
|
|
19
|
+
"bin": {
|
|
20
|
+
"flaghoist": "bin.js"
|
|
21
|
+
},
|
|
22
|
+
"files": [
|
|
23
|
+
"bin.js"
|
|
24
|
+
]
|
|
25
|
+
}
|