-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
67 lines (67 loc) · 1.58 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "fictional",
"description": "Generate fake data deterministically from a given input",
"version": "2.1.0",
"type": "commonjs",
"main": "index.js",
"types": "./index.d.ts",
"exports": {
"types": "./index.d.ts",
"import": "./index.mjs",
"require": "./index.js"
},
"repository": {
"type": "git",
"url": "git://github.com/oftherivier/fictional.git"
},
"bugs": {
"url": "https://github.com/oftherivier/fictional/issues"
},
"homepage": "https://github.com/oftherivier/fictional",
"author": "Justin van der Merwe",
"license": "MIT",
"files": [
"data",
"*.js",
"utils/*.js",
"*.mjs",
"dist",
"index.d.ts",
"scripts"
],
"oftherivier": {
"type": "es5",
"src": "index.js"
},
"scripts": {
"build": "yarn tool build && yarn build:docs",
"build:docs": "./scripts/update-readme.sh",
"lint": "yarn tool lint",
"format": "yarn tool format",
"test": "yarn tool test",
"release": "yarn tool release",
"typetest": "yarn tool typetest",
"checks": "yarn lint && yarn typetest && yarn test",
"tool": "npx @oftherivier/tools"
},
"dependencies": {
"decimal.js": "^10.4.3",
"fast-json-stable-stringify": "^2.1.0",
"fnv-plus": "^1.3.1",
"siphash": "^1.1.0"
},
"keywords": [
"deterministic",
"fake",
"data",
"generator",
"fictional",
"fixtures",
"unit",
"testing"
],
"packageManager": "[email protected]+sha256.1aa43a5304405be7a7cb9cb5de7b97de9c4e8ddd3273e4dad00d6ae3eb39f0ef",
"devDependencies": {
"@oftherivier/tools": "^0.2.1"
}
}