forked from zhujun24/chinese-to-pinyin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.28 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
{
"name": "chinese-to-pinyin",
"version": "0.1.6",
"description": "一个将中文翻译成拼音的库,支持多音字",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/zhujun24/chinese-to-pinyin.git"
},
"keywords": [
"Pinyin",
"Chinese",
"Polyphone",
"Chinese-to-Pinyin"
],
"author": "zhujun24",
"license": "MIT",
"bugs": {
"url": "https://github.com/zhujun24/chinese-to-pinyin/issues"
},
"homepage": "https://github.com/zhujun24/chinese-to-pinyin#readme",
"devDependencies": {
"babel-eslint": "^6.1.2",
"babel-plugin-transform-async-to-generator": "^6.8.0",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"chai": "^3.5.0",
"eslint": "^3.2.0",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.12.0",
"eslint-plugin-jsx-a11y": "^2.0.1",
"eslint-plugin-react": "^5.2.2",
"grunt": "^1.0.1",
"grunt-babel": "^6.0.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-eslint": "^19.0.0",
"load-grunt-tasks": "^3.5.0",
"mocha": "^3.0.2",
"pre-commit": "^1.1.3"
},
"scripts": {
"start": "node index.js",
"test": "mocha test/index",
"lint": "eslint ."
},
"pre-commit": [
"lint"
]
}