humanish 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 +10 -0
- package/index.js +1 -0
- package/package.json +15 -0
package/README.md
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# humanish
|
|
2
|
+
|
|
3
|
+
This name is reserved for the **humanish** persona-simulation harness
|
|
4
|
+
(currently published as [`homun`](https://www.npmjs.com/package/homun)):
|
|
5
|
+
one command that packs your working copy, boots it in a sandbox, and runs
|
|
6
|
+
realistic synthetic (human-ish) users against it, with verifiable evidence
|
|
7
|
+
bundles.
|
|
8
|
+
|
|
9
|
+
The rename is in progress. The real package lands here shortly. Until then:
|
|
10
|
+
https://github.com/danielgwilson/homun
|
package/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = {};
|
package/package.json
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "humanish",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Reserved for the humanish persona-simulation harness (formerly homun): run realistic synthetic users against your app from any project directory. Rename in progress; real package lands here shortly.",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"author": "Daniel G Wilson",
|
|
7
|
+
"homepage": "https://github.com/danielgwilson/homun",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "git+https://github.com/danielgwilson/homun.git"
|
|
11
|
+
},
|
|
12
|
+
"keywords": ["persona-simulation", "synthetic-users", "testing-harness", "computer-use"],
|
|
13
|
+
"files": ["README.md", "index.js"],
|
|
14
|
+
"main": "index.js"
|
|
15
|
+
}
|