-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
61 lines (61 loc) · 1.41 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "make-error",
"version": "1.3.7",
"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 <[email protected]>",
"repository": {
"type": "git",
"url": "git://github.com/JsCommunity/make-error.git"
},
"devDependencies": {
"browserify": "^17.0.0",
"eslint": "^7.13.0",
"eslint-config-prettier": "^6.15.0",
"eslint-config-standard": "^16.0.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"husky": "^4.3.0",
"jest": "^26",
"prettier": "^2.1.2",
"uglify-js": "^3.3.2"
},
"jest": {
"testEnvironment": "node"
},
"scripts": {
"dev-test": "jest --watch",
"format": "prettier --write '**'",
"prepublishOnly": "mkdir -p dist && browserify -s makeError index.js | uglifyjs -c > dist/make-error.js",
"pretest": "eslint --ignore-path .gitignore .",
"test": "jest"
},
"files": [
"dist/",
"index.js",
"index.d.ts"
],
"husky": {
"hooks": {
"commit-msg": "npm run test"
}
}
}