forked from dubzzz/pure-rand
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.27 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
{
"name": "pure-rand",
"version": "5.0.1",
"description": " Pure random number generator written in TypeScript",
"type": "commonjs",
"main": "lib/pure-rand.js",
"exports": {
".": {
"require": "./lib/pure-rand.js",
"import": "./lib/esm/pure-rand.js",
"types": "./lib/types/pure-rand.d.ts",
"default": "./lib/esm/pure-rand.js"
}
},
"module": "lib/esm/pure-rand.js",
"types": "lib/types/pure-rand.d.ts",
"files": [
"lib"
],
"sideEffects": false,
"scripts": {
"format:check": "prettier --list-different \"**/*.{js,ts}\"",
"format": "prettier --write \"**/*.{js,ts}\"",
"build": "tsc && tsc -p ./tsconfig.declaration.json && denoify",
"build:esm": "tsc --module es2015 --outDir lib/esm --moduleResolution node && cp package.esm-template.json lib/esm/package.json",
"build:prod": "yarn build && yarn build:esm && node postbuild/main.cjs",
"build:prod-ci": "cross-env EXPECT_GITHUB_SHA=true yarn build:prod",
"test": "jest --config jest.config.js --coverage",
"build:bench:old": "tsc --target es6",
"build:bench:new": "tsc --target es6 --outDir lib-new/",
"bench": "node perf/benchmark.cjs",
"auto:bench": "git stash && yarn build:bench:old && git stash pop && yarn build:bench:new && yarn bench"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dubzzz/pure-rand.git"
},
"author": "Nicolas DUBIEN <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dubzzz/pure-rand/issues"
},
"homepage": "https://github.com/dubzzz/pure-rand#readme",
"dependencies": {},
"devDependencies": {
"@types/jest": "^27.0.1",
"@types/node": "^17.0.8",
"benchmark": "^2.1.4",
"chalk": "^5.0.0",
"console-table-printer": "2.10.0",
"cross-env": "^7.0.3",
"fast-check": "^2.7.0",
"glob": "^7.1.6",
"jest": "^26.1.0",
"microtime": "^3.0.0",
"prettier": "2.6.1",
"replace-in-file": "^6.1.0",
"source-map-support": "^0.5.16",
"ts-jest": "^26.1.2",
"ts-node": "^10.0.0",
"typescript": "^4.0.2",
"yargs": "^17.0.1",
"denoify": "^0.11.0"
},
"keywords": [
"pure random",
"random number generator"
],
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/fast-check"
}
}