-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1023 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "kanasort",
"version": "2.0.1",
"description": "Sort Japanese text.",
"main": "lib/index.js",
"bin": {
"kanasort": "bin/kanasort"
},
"scripts": {
"test": "ava",
"test:watch": "ava --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/seangenabe/kanasort.git"
},
"keywords": [
"Japanese",
"sort",
"compare",
"string",
"kana"
],
"author": "Sean Genabe <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/seangenabe/kanasort/issues"
},
"homepage": "https://github.com/seangenabe/kanasort#readme",
"directories": {
"lib": "./lib"
},
"engines": {
"node": ">=4"
},
"dependencies": {
"lru-cache": "^4.0.0",
"mkc": "^1.1.0",
"split": "^1.0.0",
"stream-combiner": "^0.2.2"
},
"devDependencies": {
"array-shuffle": "^1.0.0",
"ava": "^0.18.1"
},
"ava": {
"files": [
"test/*.test.js"
],
"source": [
"lib/**.js"
]
}
}