-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
130 lines (130 loc) · 3.38 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "@travi/any",
"description": "random data generator for when test data is insignificant",
"license": "MIT",
"version": "0.0.0-semantically-released",
"engines": {
"node": "^18.17 || >=20.6.1"
},
"author": "Matt Travi <[email protected]> (https://matt.travi.org/)",
"contributors": [
{
"name": "Trevor Richardson",
"email": "[email protected]",
"url": "https://trevorrichardson.me"
},
{
"name": "Zach Toben",
"email": "[email protected]",
"url": "https://ztoben.com/"
},
{
"name": "Justin Waite",
"email": "[email protected]",
"url": "https://github.com/justinwaite"
}
],
"repository": {
"type": "git",
"url": "https://github.com/travi/any.git"
},
"bugs": {
"url": "https://github.com/travi/any/issues"
},
"homepage": "https://github.com/travi/any#readme",
"funding": {
"url": "https://github.com/travi/any?sponsor=1"
},
"keywords": [
"test",
"random",
"data",
"chance"
],
"exports": {
"import": {
"types": "./index.d.mts",
"default": "./lib/any.mjs"
},
"require": {
"types": "./index.d.ts",
"default": "./lib/any.js"
}
},
"main": "lib/any.js",
"module": "lib/any.mjs",
"types": "./index.d.ts",
"scripts": {
"clean": "rimraf coverage/ lib/",
"build": "rollup -c && cp ./index.d.ts ./index.d.mts",
"lint:js": "eslint .",
"lint:md": "remark . --frail",
"lint:peer": "npm ls >/dev/null",
"test:unit": "cross-env NODE_ENV=test c8 run-s test:unit:base",
"test:unit:base": "mocha --recursive test/unit/",
"test:types": "tsd",
"pretest": "run-s build",
"test": "npm-run-all --print-label --parallel lint:* --parallel test:*",
"generate:md": "remark . --output",
"coverage": "nyc run-s tests:unit",
"report-coverage": "nyc report --reporter=text-lcov | coveralls",
"preversion": "npm test",
"prepack": "npm run build",
"prepare": "husky install",
"lint:publish": "publint --strict",
"lint:engines": "ls-engines"
},
"files": [
"./lib/",
"./index.d.ts",
"./index.d.mts"
],
"publishConfig": {
"access": "public",
"provenance": true
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@types/chance": "^1.1.6",
"chance": "^1.1.11",
"debug": "^4.3.5",
"lodash": "^4.17.21",
"mersenne-twister": "^1.1.0"
},
"devDependencies": {
"@babel/plugin-transform-exponentiation-operator": "7.25.9",
"@babel/register": "7.25.9",
"@rollup/plugin-babel": "6.0.4",
"@travi/babel-preset": "3.0.135",
"@travi/eslint-config": "5.0.11",
"@travi/eslint-config-mocha": "1.0.25",
"c8": "10.1.2",
"chai": "4.5.0",
"commitlint-config-travi": "1.4.53",
"coveralls": "3.1.1",
"cross-env": "7.0.3",
"cz-conventional-changelog": "3.3.0",
"formatio": "1.2.0",
"globstar": "1.0.0",
"husky": "9.1.7",
"ls-engines": "0.9.3",
"mocha": "10.8.2",
"npm-run-all2": "7.0.1",
"proxyquire": "2.1.3",
"publint": "0.2.12",
"referee": "1.2.0",
"referee-sinon": "1.0.3",
"remark-cli": "12.0.1",
"remark-preset-lint-travi": "6.0.6",
"remark-toc": "9.0.0",
"rimraf": "6.0.1",
"rollup": "4.28.0",
"rollup-plugin-auto-external": "2.0.0",
"sinon": "19.0.2",
"tsd": "0.31.2"
}
}