-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.9 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.9 KB
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
{
"name": "@nicolasomar/react-key-generator",
"version": "1.0.9",
"type": "module",
"description": "A generator of random React keys using window.crypto",
"keywords": [
"react",
"react-key-generator",
"key-generator",
"generator",
"typescript"
],
"author": "Nicolás Omar González Passerino",
"license": "MIT",
"homepage": "https://github.com/NicolasOmar/react-key-generator#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/NicolasOmar/react-key-generator.git"
},
"bugs": {
"url": "https://github.com/NicolasOmar/react-key-generator/issues"
},
"publishConfig": {
"access": "public"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"publish": "semantic-release",
"test": "vitest",
"test:ci": "npm test -- --coverage",
"lint": "eslint --max-warnings 0 *.ts",
"prettier": "prettier --check *.ts",
"prettier:fix": "prettier --write *.ts",
"update": "ncu -i --format group --peer --doctor --doctorTest 'npm run check:project'",
"check:project": "npm run prettier && npm run lint && npm run build && npm run test:ci"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.6",
"@semantic-release/npm": "^13.1.5",
"@semantic-release/release-notes-generator": "^14.1.0",
"@vitest/coverage-v8": "^4.1.4",
"eslint": "^10.2.1",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"jsdom": "^29.0.2",
"lint-staged": "^16.4.0",
"npm-check-updates": "^21.0.2",
"prettier": "^3.8.3",
"semantic-release": "^25.0.3",
"typescript": "^6.0.3",
"typescript-eslint": "^8.58.2",
"vitest": "^4.1.4"
}
}