- 响应式设计,支持桌面端和手机端自适应 - 首页展示轮播图、推荐歌单、热门歌曲、新碟上架、热门歌手 - 歌曲/歌手/专辑/歌单详情页 - 底部播放器:播放/暂停、上下首、进度拖动、音量控制 - 歌词同步滚动显示 - 搜索功能 - 后台管理 /admin - JSON文件存储
45 lines
1.2 KiB
JSON
45 lines
1.2 KiB
JSON
{
|
|
"name": "detect-libc",
|
|
"version": "2.1.2",
|
|
"description": "Node.js module to detect the C standard library (libc) implementation family and version",
|
|
"main": "lib/detect-libc.js",
|
|
"files": [
|
|
"lib/",
|
|
"index.d.ts"
|
|
],
|
|
"scripts": {
|
|
"test": "semistandard && nyc --reporter=text --check-coverage --branches=100 ava test/unit.js",
|
|
"changelog": "conventional-changelog -i CHANGELOG.md -s",
|
|
"bench": "node benchmark/detect-libc",
|
|
"bench:calls": "node benchmark/call-familySync.js && sleep 1 && node benchmark/call-isNonGlibcLinuxSync.js && sleep 1 && node benchmark/call-versionSync.js"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/lovell/detect-libc.git"
|
|
},
|
|
"keywords": [
|
|
"libc",
|
|
"glibc",
|
|
"musl"
|
|
],
|
|
"author": "Lovell Fuller <npm@lovell.info>",
|
|
"contributors": [
|
|
"Niklas Salmoukas <niklas@salmoukas.com>",
|
|
"Vinícius Lourenço <vinyygamerlol@gmail.com>"
|
|
],
|
|
"license": "Apache-2.0",
|
|
"devDependencies": {
|
|
"ava": "^2.4.0",
|
|
"benchmark": "^2.1.4",
|
|
"conventional-changelog-cli": "^5.0.0",
|
|
"eslint-config-standard": "^13.0.1",
|
|
"nyc": "^15.1.0",
|
|
"proxyquire": "^2.1.3",
|
|
"semistandard": "^14.2.3"
|
|
},
|
|
"engines": {
|
|
"node": ">=8"
|
|
},
|
|
"types": "index.d.ts"
|
|
}
|