common-data-structure
Version:
一些javaScript常用数据结构
64 lines (63 loc) • 1.73 kB
JSON
{
"name": "common-data-structure",
"version": "0.12.0",
"description": "一些javaScript常用数据结构",
"main": "lib/index.js",
"scripts": {
"dev": "rollup --config --watch",
"build": "rollup --config --environment NODE_ENV:production",
"test": "jest",
"lint": "eslint src test util",
"fix": "eslint --ext .js --fix src test util"
},
"husky": {
"hooks": {
"pre-commit": "npm run test && lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/LuHong-HL/data-structure.git"
},
"keywords": [
"common-data-structure",
"data-structure",
"structure",
"数据结构",
"javaScript数据结构",
"类",
"class"
],
"author": "hl",
"license": "MIT",
"bugs": {
"url": "https://github.com/LuHong-HL/data-structure/issues"
},
"homepage": "https://github.com/LuHong-HL/data-structure#readme",
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/runtime-corejs3": "^7.12.5",
"@rollup/plugin-babel": "^5.2.2",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "^11.1.0",
"@rollup/plugin-replace": "^2.3.4",
"eslint": "^7.19.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"husky": "^4.3.8",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"rollup": "^2.38.0",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-terser": "^7.0.2"
}
}