Files
docz/packages/load-cfg/package.json
Pedro Nauck 7f05dbf790 v0.12.6
2018-10-30 14:21:10 -03:00

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"
}
}