-
Notifications
You must be signed in to change notification settings - Fork 50
/
package.json
61 lines (61 loc) · 1.52 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
{
"name": "limax",
"version": "4.1.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": ">=14"
},
"files": [
"CHANGELOG.md",
"index.d.ts",
"lib/"
],
"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]>",
"Benjamin Piouffle <[email protected]>"
],
"license": "Apache-2.0",
"dependencies": {
"hepburn": "^1.2.0",
"lodash.deburr": "^4.1.0",
"speakingurl": "^14.0.1",
"pinyin-pro": "^3.14.0"
},
"devDependencies": {
"ava": "^5.2.0",
"conventional-changelog-cli": "^2.2.2",
"nyc": "^15.1.0",
"semistandard": "^16.0.1"
}
}