33 lines
708 B
JSON
33 lines
708 B
JSON
|
{
|
|||
|
"type": "commonjs",
|
|||
|
"name": "js-pinyin",
|
|||
|
"version": "0.2.7",
|
|||
|
"description": "汉字转换拼音,需要es6语法(let、class等)支持,不依赖其他组件",
|
|||
|
"private": false,
|
|||
|
"scripts": {
|
|||
|
"start": "node ./index",
|
|||
|
"test": "node ./index",
|
|||
|
"build": "babel pinyin.js -d dist"
|
|||
|
},
|
|||
|
"keywords": [
|
|||
|
"pinyin",
|
|||
|
"拼音",
|
|||
|
"首字母",
|
|||
|
"汉语拼音",
|
|||
|
"汉字",
|
|||
|
"es6"
|
|||
|
],
|
|||
|
"devDependencies": {
|
|||
|
"babel-cli": "^6.26.0",
|
|||
|
"babel-preset-es2015": "^6.24.1"
|
|||
|
},
|
|||
|
"repository": {
|
|||
|
"type": "git",
|
|||
|
"url": "git://github.com/waterchestnut/pinyin.git"
|
|||
|
},
|
|||
|
"publishConfig": {
|
|||
|
"registry": "https://registry.npmjs.org"
|
|||
|
},
|
|||
|
"license": "MIT License"
|
|||
|
}
|