mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-20 11:05:18 +08:00
# Conflicts: # jsowell-ui/.env.development # jsowell-ui/.env.staging # jsowell-ui/bin/build-sit.bat # jsowell-ui/bin/build.bat # jsowell-ui/src/api/adapayMember/adapayMember.js # jsowell-ui/src/api/pile/merchant.js # jsowell-ui/src/router/index.js # jsowell-ui/src/views/financial/financeDetail.vue # jsowell-ui/src/views/financial/merchant.vue # jsowell-ui/src/views/homeIndex/homeIndex.vue # jsowell-ui/src/views/login.vue # jsowell-ui/src/views/pile/basic/detail.vue # jsowell-ui/src/views/pile/station/components/SiteInfo.vue # jsowell-ui/src/views/pile/station/detail.vue # jsowell-ui/src/views/pile/station/orderReport.vue
49 lines
1.1 KiB
JSON
49 lines
1.1 KiB
JSON
{
|
|
"name": "timsort",
|
|
"version": "0.3.0",
|
|
"author": {
|
|
"name": "Marco Ziccardi",
|
|
"url": "http://mziccard.me/"
|
|
},
|
|
"description": "TimSort: Fast Sorting for Node.js",
|
|
"homepage": "https://github.com/mziccard/node-timsort",
|
|
"main": "index.js",
|
|
"directories": {
|
|
"test": "./test",
|
|
"benchmark": "./benchmark"
|
|
},
|
|
"dependencies": {},
|
|
"devDependencies": {
|
|
"assert": "~1.3.0",
|
|
"babel-eslint": "^4.0.5",
|
|
"eslint": "^1.1.0",
|
|
"grunt": "^0.4.5",
|
|
"grunt-babel": "^5.0.1",
|
|
"grunt-banner": "^0.5.0",
|
|
"grunt-contrib-clean": "^0.6.0",
|
|
"grunt-contrib-uglify": "^0.9.1",
|
|
"mocha": "~2.2.5"
|
|
},
|
|
"scripts": {
|
|
"test": "mocha --timeout 5000",
|
|
"lint": "eslint Gruntfile.js src/ test/ benchmark/index.js",
|
|
"benchmark": "node benchmark/index.js"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/mziccard/node-timsort.git"
|
|
},
|
|
"keywords": [
|
|
"sort",
|
|
"compare",
|
|
"TimSort",
|
|
"algorithm",
|
|
"python",
|
|
"performance"
|
|
],
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/mziccard/node-timsort/issues"
|
|
}
|
|
}
|