-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.29 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
{
"name": "@grandom/mt19937",
"version": "0.0.0-development",
"description": "Configurable Mersenne Twister PRNG implementation written in TypeScript.",
"author": "Richard King <richrdkng@gmail.com> (www.richrdkng.com)",
"license": "BSD-3-Clause",
"main": "index.js",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/grandom-library/mt19937.git"
},
"bugs": {
"url": "https://github.com/grandom-library/mt19937/issues"
},
"homepage": "https://github.com/grandom-library/mt19937#readme",
"keywords": [
"mersenne",
"twister",
"mt19937",
"seed",
"random",
"number",
"generator",
"seedable",
"rng",
"prng",
"srng",
"sprng",
"mersennetwister",
"mersenne-twister",
"randomness",
"rand"
],
"engines": {
"node": ">= 16"
},
"ts-standard": {
"ignore": [
"dist"
]
},
"scripts": {
"start": "npm test -- --watchAll",
"types": "tsc --noEmit && tsc -p tsconfig.types.json --outDir .temp",
"lint": "ts-standard --verbose | snazzy",
"lint:fix": "ts-standard --verbose --fix | snazzy",
"test": "jest",
"prep": "npm run __prep:init && npm run __prep:copy",
"build": "npm run __build:src && npm run __build:types",
"//": "-------------------------------------------------------------------",
"__prep:init": "rm -rf dist && mkdir dist",
"__prep:copy": "cp LICENSE* README* package.json dist",
"__build:src": "rollup -c",
"__build:types": "tsc -p tsconfig.types.json"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^11.1.3",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@testyard/stats": "^1.4.1",
"@tsconfig/node16": "^16.1.0",
"@types/jest": "^29.5.5",
"@types/node": "^16.18.38",
"@types/semantic-release": "^20.0.1",
"jest": "^29.7.0",
"jest-extended": "^4.0.0",
"rollup": "^3.29.1",
"semantic-release": "^19.0.5",
"semantic-release-monorepo": "^7.0.5",
"snazzy": "^9.0.0",
"string-dedent": "^3.0.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"ts-standard": "^12.0.2",
"tslib": "^2.6.1",
"typescript": "^4.9.4"
}
}