-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 933 Bytes
/
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
{
"name": "unisort",
"version": "1.1.0",
"description": "Extension for sort() to include Non-Latin alphabets into the sort algorithm instead of listing each alphabet after one another.",
"main": "index.js",
"scripts": {
"test": "mocha --reporter spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Closing-the-Gap-in-NLS-DH/unisort.git"
},
"keywords": [
"js",
"nls",
"sort",
"arabic",
"nonlatin",
"javascript",
"alphabet"
],
"author": "Jonas Müller-Laackman",
"license": "ISC",
"bugs": {
"url": "https://github.com/Closing-the-Gap-in-NLS-DH/unisort/issues"
},
"homepage": "https://github.com/Closing-the-Gap-in-NLS-DH/unisort#readme",
"dependencies": {
"chai": "^4.3.4",
"mocha": "^9.1.3"
},
"devDependencies": {
"eslint": "^8.4.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.3"
}
}