refs
Version:
Compile and merge YAML, JSON or INI config files together through file path references
59 lines (58 loc) • 1.41 kB
JSON
{
"name": "refs",
"version": "0.9.8",
"description": "Compile and merge YAML, JSON or INI config files together through file path references",
"main": "index.js",
"preferGlobal": true,
"bin": {
"refs": "bin/refs.js"
},
"engines": {
"node": ">=10.23.2"
},
"scripts": {
"test": "npm run lint && npm run test-all",
"coverage": "nyc mocha test/all",
"coveralls": "nyc mocha test/all && nyc report --reporter=text-lcov | coveralls && rm -rf ./coverage",
"lint": "./node_modules/.bin/eslint index.js lib/ bin/ test/",
"test-all": "mocha test/all"
},
"repository": {
"type": "git",
"url": "https://github.com/doublenot/refs.git"
},
"keywords": [
"json",
"yaml",
"ini",
"ref",
"refs",
"reference",
"references",
"yaml-ref",
"json-ref",
"compile"
],
"author": "doublenot",
"license": "MIT",
"dependencies": {
"bluebird": "^3.4.6",
"commander": "^2.9.0",
"ini": "^1.3.8",
"js-yaml": "^4.0.0",
"node-yaml": "^4.0.1"
},
"devDependencies": {
"coveralls": "^3.0.2",
"eslint": "^5.6.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.11.1",
"mocha": "^6.2.3",
"nyc": "^15.1.0",
"should": "^13.2.3",
"testdouble": "^3.8.2"
}
}