-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.08 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
{
"name": "weighted-shuffle",
"description": "Shuffle a collection of weighted values",
"version": "1.0.0",
"license": "Apache-2.0",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"bugs": "https://github.com/denizdogan/weighted-shuffle/issues",
"homepage": "https://github.com/denizdogan/weighted-shuffle",
"repository": {
"type": "git",
"url": "https://github.com/denizdogan/weighted-shuffle.git"
},
"files": [
"/lib"
],
"keywords": [
"algorithm",
"shuffle",
"weighted"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"watch": "tsc -w -p tsconfig.build.json",
"clean": "rimraf lib",
"test": "jest"
},
"devDependencies": {
"@types/jest": "^23.3.12",
"@types/seedrandom": "^2.4.27",
"husky": "^1.3.1",
"jest": "^26.6.3",
"lint-staged": "^13.1.0",
"prettier": "^1.15.3",
"rimraf": "^2.6.3",
"seedrandom": "^2.4.4",
"ts-jest": "^26.5.5",
"tslib": "^1.9.3",
"typescript": "^4.2.4"
},
"lint-staged": {
"*.ts, *.js": [
"prettier --write",
"git add"
]
}
}