@sampuli/data 0.1.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.
- package/README.md +134 -0
- package/dist/index.cjs +9965 -0
- package/dist/index.d.ts +71 -0
- package/dist/index.js +9934 -0
- package/package.json +63 -0
package/package.json
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@sampuli/data",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Format-true synthetic test data for 27 countries (Kenya first) — valid KRA PINs & M-Pesa numbers, Nigerian BVNs, South African IDs, banks & SWIFT/BIC, KYC/transfer/payment scenarios. Free, no caps. The engine behind Sampuli.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.cjs",
|
|
7
|
+
"module": "./dist/index.js",
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
|
+
"import": "./dist/index.js",
|
|
13
|
+
"require": "./dist/index.cjs"
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
"files": [
|
|
17
|
+
"dist",
|
|
18
|
+
"README.md"
|
|
19
|
+
],
|
|
20
|
+
"sideEffects": false,
|
|
21
|
+
"engines": {
|
|
22
|
+
"node": ">=16"
|
|
23
|
+
},
|
|
24
|
+
"scripts": {
|
|
25
|
+
"build": "node build.js",
|
|
26
|
+
"test": "vitest run",
|
|
27
|
+
"test:watch": "vitest",
|
|
28
|
+
"prepublishOnly": "npm run build && npm test"
|
|
29
|
+
},
|
|
30
|
+
"keywords": [
|
|
31
|
+
"test-data",
|
|
32
|
+
"synthetic-data",
|
|
33
|
+
"mock-data",
|
|
34
|
+
"fake-data",
|
|
35
|
+
"kenya",
|
|
36
|
+
"nigeria",
|
|
37
|
+
"south-africa",
|
|
38
|
+
"africa",
|
|
39
|
+
"kra-pin",
|
|
40
|
+
"bvn",
|
|
41
|
+
"mpesa",
|
|
42
|
+
"m-pesa",
|
|
43
|
+
"fintech",
|
|
44
|
+
"qa",
|
|
45
|
+
"faker",
|
|
46
|
+
"sampuli"
|
|
47
|
+
],
|
|
48
|
+
"author": "Sampuli",
|
|
49
|
+
"license": "MIT",
|
|
50
|
+
"homepage": "https://sampuli.site",
|
|
51
|
+
"repository": {
|
|
52
|
+
"type": "git",
|
|
53
|
+
"url": "git+https://github.com/kevinbett/sampuli.git",
|
|
54
|
+
"directory": "packages/data"
|
|
55
|
+
},
|
|
56
|
+
"bugs": {
|
|
57
|
+
"url": "https://github.com/kevinbett/sampuli/issues"
|
|
58
|
+
},
|
|
59
|
+
"devDependencies": {
|
|
60
|
+
"esbuild": "^0.24.2",
|
|
61
|
+
"vitest": "^2.1.9"
|
|
62
|
+
}
|
|
63
|
+
}
|