This repository was archived by the owner on Aug 19, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.32 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.32 KB
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
{
"name": "error-wrapper",
"description": "A base class for errors that wrap other errors.",
"author": "Stephen Sorensen <shuoink@gmail.com> (http://www.stephenjohnsorensen.com/)",
"license": "MIT",
"main": "umd.js",
"scripts": {
"test": "jest",
"build": "browserify -t [ babelify --presets [ es2015 ] ] src/ErrorWrapper.js --standalone ErrorWrapper > umd.js",
"lint": "eslint src",
"prepublish": "npm run build",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"precommit": "lint-staged"
},
"repository": {
"type": "git",
"url": "https://github.com/spudly/error-wrapper.git"
},
"dependencies": {
"error-subclass": "^2.2.0"
},
"devDependencies": {
"@spudly/eslint-config": "^5.0.1",
"babel-preset-es2015": "^6.9.0",
"babelify": "^7.3.0",
"browserify": "^14.1.0",
"eslint": "^4.1.0",
"husky": "^0.14.0",
"jest": "^21.0.0",
"lint-staged": "^4.0.0",
"prettier": "^1.0.0",
"semantic-release": "^7.0.1"
},
"files": [
"umd.js"
],
"babel": {
"presets": [
"es2015"
]
},
"eslintConfig": {
"extends": "@spudly"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write --print-width=100 --single-quote --bracket-spacing=false 'src/**/*.js'",
"git add"
]
}
}