-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
83 lines (83 loc) · 1.75 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "japanese",
"version": "1.2.0",
"description": "Util collection for Japanese text processing. Hiraganize, Katakanize, and Romanize.",
"homepage": "https://github.com/hakatashi/japanese.js",
"author": {
"name": "hakatashi",
"email": "[email protected]",
"url": "http://hakatashi.com/"
},
"repository": "hakatashi/japanese.js",
"license": "MIT",
"files": [
"src",
"index.js",
"cli.js",
"sugar.js"
],
"keywords": [
"japanese",
"text",
"unicode",
"hiragana",
"katakana",
"romaji",
"romanization",
"unihan",
"kanji",
"hanji",
"CJK"
],
"dependencies": {
"big.js": "^5.0.2",
"extend": "^3.0.0",
"meow": "~3.7.0"
},
"devDependencies": {
"babel-preset-es2015": "^6.16.0",
"babelify": "^7.2.0",
"browserify": "^14.4.0",
"coffee-script": "^1.11.0",
"coveralls": "^3.0.0",
"gulp": "next",
"gulp-babel": "^6.1.1",
"gulp-header": "^1.8.7",
"gulp-jshint": "^2.0.0",
"gulp-mocha-phantomjs": "^0.12.0",
"gulp-rename": "^2.0.0",
"gulp-spawn-mocha": "^3.0.0",
"gulp-uglify": "^3.0.0",
"istanbul": "^0.4.1",
"jshint": "^2.8.0",
"jshint-stylish": "^2.0.1",
"mocha": "^3.0.2",
"should": "^13.0.0",
"vinyl-source-stream": "^1.1.0"
},
"scripts": {
"test": "gulp",
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha test/index.js"
},
"bin": {
"japanese": "cli.js"
},
"testling": {
"harness": "mocha-bdd",
"files": "test/*.js",
"browsers": [
"ie/6..latest",
"chrome/latest",
"firefox/latest"
]
},
"coffeelintConfig": {
"no_tabs": {
"level": "ignore"
},
"indentation": {
"level": "error",
"value": 1
}
}
}