
To be followed by tests and `npm run build`, obviously! Reviewed-on: #1 Co-authored-by: Jack Jackson <scubbojj@gmail.com> Co-committed-by: Jack Jackson <scubbojj@gmail.com>
24 lines
532 B
JavaScript
24 lines
532 B
JavaScript
/**
|
|
* @fileoverview Main package entrypoint.
|
|
* @author Nicholas C. Zakas
|
|
*/
|
|
|
|
"use strict";
|
|
|
|
const { name, version } = require("../package.json");
|
|
|
|
//------------------------------------------------------------------------------
|
|
// Public Interface
|
|
//------------------------------------------------------------------------------
|
|
|
|
module.exports = {
|
|
meta: {
|
|
name,
|
|
version
|
|
},
|
|
configs: {
|
|
all: require("./configs/eslint-all"),
|
|
recommended: require("./configs/eslint-recommended")
|
|
}
|
|
};
|