-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 863 Bytes
/
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
{
"name": "random-int-memoized",
"version": "1.0.0",
"description": "A random integer generator that does not pick the same number twice until it runs out of unique numbers.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"homepage": "https://github.com/mussinbenarbia/random-int-memoized",
"scripts": {
"test": "jest --config jestconfig.json",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mussinbenarbia/random-int-memoized.git"
},
"files": [
"lib/**/*"
],
"keywords": [
"random",
"number",
"integer",
"generator",
"repeat",
"unique"
],
"author": "Mussin Benarbia",
"license": "ISC",
"devDependencies": {
"@types/jest": "^26.0.23",
"jest": "^27.0.4",
"prettier": "^2.3.1",
"ts-jest": "^27.0.3",
"typescript": "^4.3.4"
}
}