install-nix-action/node_modules/make-error/package.json

51 lines
1.1 KiB
JSON
Raw Normal View History

2019-11-13 16:14:48 +00:00
{
"name": "make-error",
"version": "1.3.5",
"main": "index.js",
"license": "ISC",
"description": "Make your own error types!",
"keywords": [
"create",
"custom",
"derive",
"error",
"errors",
"extend",
"extending",
"extension",
"factory",
"inherit",
"make",
"subclass"
],
"homepage": "https://github.com/JsCommunity/make-error",
"bugs": "https://github.com/JsCommunity/make-error/issues",
"author": "Julien Fontanet <julien.fontanet@isonoe.net>",
"repository": {
"type": "git",
"url": "git://github.com/JsCommunity/make-error.git"
},
"devDependencies": {
"browserify": "^14.5.0",
"husky": "^0.14.3",
"jest": "^20",
"standard": "^10.0.3",
"uglify-js": "^3.3.2"
},
"jest": {
"testEnvironment": "node"
},
"scripts": {
"commitmsg": "yarn test",
"dev-test": "jest --watch",
"prepublishOnly": "mkdir -p dist && browserify -s makeError index.js | uglifyjs -c > dist/make-error.js",
"pretest": "standard",
"test": "jest"
},
"files": [
"dist/",
"index.js",
"index.d.ts"
]
}