-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
77 lines (77 loc) · 2.23 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
{
"name": "rand-seed",
"version": "2.1.7",
"description": "A small library for generating random numbers",
"main": "./dist/cjs/index.js",
"module": "./dist/es/index.js",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/es/index.js"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/cjs/index.js"
}
}
},
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "cross-env NODE_ENV=test ./node_modules/.bin/jest",
"lint": "npx eslint .",
"format": "npx prettier . --write",
"development": "cross-env NODE_ENV=local npx rollup --config rollup.config.ts --configPlugin @rollup/plugin-typescript",
"dev": "npm run development",
"production": "cross-env NODE_ENV=production npx rollup --config rollup.config.ts --configPlugin @rollup/plugin-typescript",
"prod": "npm run production",
"watch": "cross-env NODE_ENV=local npx rollup --config rollup.config.ts --configPlugin @rollup/plugin-typescript --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/michaeldzjap/rand-seed.git"
},
"keywords": [
"random",
"seed",
"prng"
],
"author": "Michael Dzjaparidze",
"license": "MIT",
"bugs": {
"url": "https://github.com/michaeldzjap/rand-seed/issues"
},
"homepage": "https://github.com/michaeldzjap/rand-seed#readme",
"devDependencies": {
"@eslint/js": "^9.8.0",
"@rollup-extras/plugin-clean": "^1.3.9",
"@rollup/plugin-terser": "^0.4.0",
"@rollup/plugin-typescript": "^11.0.0",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.0.1",
"cross-env": "^7.0.3",
"eslint": "^9.8.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.7.0",
"eslint-plugin-jest-dom": "^5.0.1",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.1.4",
"jest": "^29.0.3",
"lint-staged": "^15.2.0",
"prettier": "^3.2.4",
"rollup": "^4.9.6",
"rollup-plugin-dts": "^6.1.1",
"ts-jest": "^29.0.0",
"typescript": "^5.0.4",
"typescript-eslint": "^8.0.0"
},
"lint-staged": {
"*.{ts,js}": [
"eslint --quiet --fix",
"prettier --write --ignore-unknown"
]
}
}