github.com/jfrog/frogbot@v1.1.1-0.20231221090046-821a26f50338/action/node_modules/before-after-hook/package.json (about) 1 { 2 "name": "before-after-hook", 3 "version": "2.2.2", 4 "description": "asynchronous before/error/after hooks for internal functionality", 5 "main": "index.js", 6 "files": [ 7 "index.js", 8 "index.d.ts", 9 "lib" 10 ], 11 "types": "./index.d.ts", 12 "scripts": { 13 "prebuild": "rimraf dist && mkdirp dist", 14 "build": "browserify index.js --standalone=Hook > dist/before-after-hook.js", 15 "postbuild": "uglifyjs dist/before-after-hook.js -mc > dist/before-after-hook.min.js", 16 "lint": "prettier --check '{lib,test,examples}/**/*' README.md package.json", 17 "lint:fix": "prettier --write '{lib,test,examples}/**/*' README.md package.json", 18 "pretest": "npm run -s lint", 19 "test": "npm run -s test:node | tap-spec", 20 "posttest": "npm run validate:ts", 21 "test:node": "node test", 22 "test:watch": "gaze 'clear && node test | tap-min' 'test/**/*.js' 'index.js' 'lib/**/*.js'", 23 "test:coverage": "istanbul cover test", 24 "test:coverage:upload": "istanbul-coveralls", 25 "validate:ts": "tsc --strict --target es6 index.d.ts", 26 "postvalidate:ts": "tsc --noEmit --strict --target es6 test/typescript-validate.ts", 27 "presemantic-release": "npm run build", 28 "semantic-release": "semantic-release" 29 }, 30 "repository": "github:gr2m/before-after-hook", 31 "keywords": [ 32 "hook", 33 "hooks", 34 "api" 35 ], 36 "author": "Gregor Martynus", 37 "license": "Apache-2.0", 38 "dependencies": {}, 39 "devDependencies": { 40 "browserify": "^16.0.0", 41 "gaze-cli": "^0.2.0", 42 "istanbul": "^0.4.0", 43 "istanbul-coveralls": "^1.0.3", 44 "mkdirp": "^1.0.3", 45 "prettier": "^2.0.0", 46 "rimraf": "^3.0.0", 47 "semantic-release": "^17.0.0", 48 "simple-mock": "^0.8.0", 49 "tap-min": "^2.0.0", 50 "tap-spec": "^5.0.0", 51 "tape": "^5.0.0", 52 "typescript": "^3.5.3", 53 "uglify-js": "^3.9.0" 54 }, 55 "release": { 56 "publish": [ 57 "@semantic-release/npm", 58 { 59 "path": "@semantic-release/github", 60 "assets": [ 61 "dist/*.js" 62 ] 63 } 64 ] 65 } 66 }