storymaps 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.
Files changed (2) hide show
  1. package/bin/storymaps.js +2 -0
  2. package/package.json +27 -0
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env node
2
+ console.log('storymaps CLI — coming soon. Visit https://storymaps.io');
package/package.json ADDED
@@ -0,0 +1,27 @@
1
+ {
2
+ "name": "storymaps",
3
+ "version": "0.0.1",
4
+ "description": "CLI tool for storymaps.io — import, export, validate, and manage user story maps from the terminal",
5
+ "bin": {
6
+ "storymaps": "./bin/storymaps.js"
7
+ },
8
+ "keywords": [
9
+ "story-mapping",
10
+ "user-story",
11
+ "agile",
12
+ "cli",
13
+ "yaml",
14
+ "backlog",
15
+ "product-management"
16
+ ],
17
+ "author": "Jack Gleeson",
18
+ "license": "AGPL-3.0",
19
+ "repository": {
20
+ "type": "git",
21
+ "url": "https://github.com/jackgleeson/storymaps-cli"
22
+ },
23
+ "homepage": "https://storymaps.io",
24
+ "engines": {
25
+ "node": ">=18"
26
+ }
27
+ }