forked from LouisT/SeededShuffle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.48 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
{
"name": "@connect3world/seeded-shuffle",
"publishConfig": {
"registry": "https://npm.pkg.github.com/connect3world"
},
"version": "0.0.1",
"description": "Shuffle and unshuffle an array by seed/key.",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"test": "jest"
},
"author": {
"name": "John Cido",
"email": "john.cido@connect3.world"
},
"repository": {
"type": "git",
"url": "git+https://github.com/connect3world/seeded-shuffle.git"
},
"bugs": {
"url": "https://github.com/connect3world/seeded-shuffle/issues"
},
"homepage": "https://github.com/connect3world/seeded-shuffle",
"license": "MIT",
"keywords": [
"shuffle",
"seed",
"unshuffle",
"random",
"array",
"seeded"
],
"devDependencies": {
"@babel/preset-typescript": "^7.18.6",
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.3.4",
"@types/jest": "^28.1.7",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"eslint": "^8.22.0",
"jest": "^28.1.3",
"rollup": "^2.78.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^28.0.8",
"tslib": "^2.4.0",
"typescript": "^4.7.4"
}
}