mirror of
https://github.com/zhigang1992/docz.git
synced 2026-06-13 08:31:16 +08:00
35 lines
851 B
JSON
35 lines
851 B
JSON
{
|
|
"name": "load-cfg",
|
|
"version": "0.12.6",
|
|
"description": "Method that can load project configurations based",
|
|
"license": "MIT",
|
|
"main": "dist/index.js",
|
|
"umd:main": "dist/index.umd.js",
|
|
"module": "dist/index.m.js",
|
|
"typings": "dist/index.d.ts",
|
|
"source": "src/index.ts",
|
|
"files": [
|
|
"dist/",
|
|
"package.json",
|
|
"README.md"
|
|
],
|
|
"scripts": {
|
|
"dev": "libundler watch --ts -e all",
|
|
"build": "libundler build --ts -e all --c",
|
|
"fix": "run-s fix:*",
|
|
"fix:prettier": "prettier \"src/**/*.{ts,tsx}\" --write",
|
|
"fix:tslint": "tslint --fix --project .",
|
|
"tslint": "tslint --project ."
|
|
},
|
|
"dependencies": {
|
|
"deepmerge": "^2.2.1",
|
|
"esm": "^3.0.84",
|
|
"find-up": "^3.0.0",
|
|
"fs-extra": "^7.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/find-up": "^2.1.1",
|
|
"@types/node": "^10.12.1"
|
|
}
|
|
}
|