-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.36 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.36 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
{
"bugs": {
"url": "https://github.com/JustRelate/slugify/issues"
},
"description": "Slugifier with multi-alphabet transliteration based on ISO and Unicode standards",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/jest": "^30.0.0",
"eslint-plugin-redos": "^4.5.0",
"prettier": "^3.8.1",
"ts-jest": "^29.4.6",
"typescript-eslint": "^8.58.0"
},
"files": [
"dist"
],
"homepage": "https://github.com/JustRelate/slugify#readme",
"jest": {
"preset": "ts-jest/presets/default-esm"
},
"keywords": [
"slug",
"transliteration",
"unicode",
"iso",
"multiscript"
],
"license": "MIT",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"name": "@justrelate/slugify",
"prettier": {},
"repository": {
"type": "git",
"url": "git+https://github.com/JustRelate/slugify.git"
},
"scripts": {
"audit-signatures": "npm audit signatures",
"build": "rm -rf dist && tsc --module commonjs && mv dist/index.js dist/index.cjs && tsc --declaration --sourcemap",
"check": "prettier --check .",
"lint": "eslint",
"prepublishOnly": "npm run build",
"test": "jest"
},
"type": "module",
"types": "./dist/index.d.ts",
"version": "1.0.1"
}