UNPKG

postinstall

Version:

Deploy files from modules after npm install

65 lines 1.29 kB
{ "name": "postinstall", "version": "0.11.2", "description": "Deploy files from modules after npm install", "main": "index.js", "bin": { "postinstall": "bin/postinstall.js" }, "repository": { "type": "git", "url": "git+https://github.com/kapouer/postinstall.git" }, "keywords": [ "postinstall", "npm", "deploy" ], "author": "Jérémy Lal <kapouer@melix.org>", "license": "MIT", "bugs": { "url": "https://github.com/kapouer/postinstall/issues" }, "homepage": "https://github.com/kapouer/postinstall#readme", "dependencies": { "@danieldietrich/copy": "^0.4.2", "glob": "^11.0.2", "minimist": "^1.2.8", "resolve": "^1.22.10" }, "devDependencies": { "@kapouer/eslint-config": "^2.0.0", "fs-extra": "^11.3.0", "mocha": "^11.2.2" }, "mocha": { "spec": "test/unit.js" }, "eslintConfig": { "extends": "@kapouer/eslint-config", "ignorePatterns": [ "test/fixtures/**" ], "overrides": [ { "files": [ "index.js" ], "env": { "es6": true } }, { "files": [ "test/*.js" ], "env": { "mocha": true } } ] }, "scripts": { "test": "mocha" } }