mirror of
https://github.com/cachix/install-nix-action.git
synced 2024-11-22 00:20:53 +00:00
50 lines
1.1 KiB
JSON
50 lines
1.1 KiB
JSON
{
|
|
"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"
|
|
]
|
|
}
|