-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.61 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
{
"name": "@ngen-rng/mersenne-twister",
"version": "0.1.1",
"description": "JavaScript implementation of Mersenne Twister for Pokémon RNG.",
"private": false,
"main": "dist/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"files": [
"dist/",
"docs/README.*",
"!*/**/*.test.*"
],
"scripts": {
"prebuild": "rimraf dist",
"build": "run-p build:*",
"build:common": "tsc",
"build:esm": "tsc -p tsconfig.esm.json",
"test": "jest --coverage",
"lint": "run-s lint:*",
"lint:eslint": "eslint . --ext .ts,.tsx --fix",
"lint:prettier": "prettier --write .",
"prepare": "simple-git-hooks",
"prepublishOnly": "yarn build",
"typedoc": "rimraf docs && typedoc && run-p typedoc:*",
"typedoc:readme": "node -e \"require('fs').copyFileSync('README.md', 'docs/README.md')\"",
"typedoc:readme_ja": "node -e \"require('fs').copyFileSync('README.ja.md', 'docs/README.ja.md')\"",
"typedoc:license": "node -e \"require('fs').copyFileSync('LICENSE', 'docs/LICENSE')\"",
"typedoc:license_mt": "node -e \"require('fs').copyFileSync('LICENSE_MT', 'docs/LICENSE_MT')\"",
"coverage:ci": "jest --coverage --silent --ci --testLocationInResults --json --outputFile=\"report.json\""
},
"publishConfig": {
"access": "public",
"registry": "https://npm.pkg.github.com/ngen-rng"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ngen-rng/mersenne-twister.git"
},
"keywords": [
"pokemon",
"rng",
"random",
"mersennetwister"
],
"author": "ngen-rng <[email protected]> (https://github.com/ngen-rng/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ngen-rng/mersenne-twister/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/ngen-rng/mersenne-twister#readme",
"engines": {
"node": ">=14.17.0"
},
"simple-git-hooks": {
"pre-commit": "yarn test && yarn run lint"
},
"dependencies": {},
"devDependencies": {
"@types/jest": "29.5.0",
"@types/node": "18.7.16",
"@typescript-eslint/eslint-plugin": "5.57.0",
"@typescript-eslint/parser": "5.36.2",
"eslint": "8.37.0",
"eslint-config-prettier": "8.8.0",
"eslint-config-standard-with-typescript": "34.0.1",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jest": "27.2.1",
"eslint-plugin-n": "15.7.0",
"eslint-plugin-promise": "6.1.1",
"jest": "29.5.0",
"npm-run-all": "4.1.5",
"prettier": "2.8.7",
"rimraf": "4.1.4",
"simple-git-hooks": "2.8.1",
"ts-jest": "29.1.0",
"ts-node": "10.9.1",
"typedoc": "0.23.28",
"typescript": "5.0.3"
}
}