diff options
author | Valentin Popov <info@valentineus.link> | 2020-02-13 13:30:54 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2020-02-13 13:30:54 +0300 |
commit | 9509148e9dc5120f2026c0337a880089734d8c80 (patch) | |
tree | 30456000766e1b8f26a84920dd6030249bb7ab94 /package.json | |
parent | 5b5f4751a9defeb43eba6df067c7100048193513 (diff) | |
download | eslint-config-9509148e9dc5120f2026c0337a880089734d8c80.tar.xz eslint-config-9509148e9dc5120f2026c0337a880089734d8c80.zip |
Formed structure of the repository
Signed-off-by: Valentin Popov <info@valentineus.link>
Diffstat (limited to 'package.json')
-rw-r--r-- | package.json | 19 |
1 files changed, 16 insertions, 3 deletions
diff --git a/package.json b/package.json index 06372c7..225d09e 100644 --- a/package.json +++ b/package.json @@ -7,10 +7,23 @@ "author": "Valentin Popov <info@valentineus.link>", "license": "Apache-2.0", "private": false, - "scripts": {}, - "dependencies": {}, + "scripts": { + "build": "rollup --config rollup.config.js" + }, "devDependencies": { + "@rollup/plugin-json": "^4.0.2", + "@rollup/plugin-typescript": "^3.0.0", + "@typescript-eslint/eslint-plugin": "^2.19.2", + "@typescript-eslint/parser": "^2.19.2", + "rollup": "^1.31.0", + "rollup-plugin-terser": "^5.2.0", "tslib": "^1.10.0", "typescript": "^3.7.5" - } + }, + "peerDependencies": { + "@typescript-eslint/eslint-plugin": "^2.19.0", + "@typescript-eslint/parser": "^2.19.0", + "eslint": "^6.8.0" + }, + "dependencies": {} } |