forked from lovell/limax
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.38 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
{
"name": "limax",
"version": "3.0.0",
"main": "./lib/limax",
"types": "index.d.ts",
"description": "Node.js module to generate URL slugs. Another one? This one cares about i18n and transliterates non-Latin scripts to conform to the RFC3986 standard. Mostly API-compatible with similar modules.",
"repository": {
"type": "git",
"url": "git://github.com/lovell/limax"
},
"engines": {
"node": ">=10"
},
"scripts": {
"test": "semistandard && nyc --reporter=html ava",
"changelog": "conventional-changelog -i CHANGELOG.md -s"
},
"keywords": [
"slug",
"url",
"clean",
"speaking",
"seo",
"i18n",
"l10n",
"transliterate",
"script",
"language",
"pinyin",
"hepburn"
],
"author": "Lovell Fuller <[email protected]>",
"contributors": [
"Zhe Feng <[email protected]>",
"Aleksey Olenyuk <[email protected]>",
"Daryl Chan <[email protected]>",
"Arjan Frans <[email protected]>",
"Fabrice Labbe <[email protected]>",
"Lukas Spieß <[email protected]>",
"David Dijan <[email protected]>"
],
"license": "Apache-2.0",
"dependencies": {
"@napi-rs/pinyin": "^1.5.0",
"hepburn": "^1.2.0",
"speakingurl": "^14.0.1"
},
"devDependencies": {
"ava": "^3.15.0",
"conventional-changelog-cli": "^2.1.1",
"nyc": "^15.1.0",
"semistandard": "^16.0.0"
}
}