-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.5 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
{
"name": "saferr",
"version": "1.0.0",
"description": "A tiny JavaScript library for safe error-handling. Supports async/await, promises and regular functions. Inspired by Go.",
"main": "./lib/index.js",
"scripts": {
"clean": "rimraf lib",
"test": "jest",
"test:prod": "cross-env BABEL_ENV=production npm run test",
"lint": "eslint src test",
"build": "cross-env BABEL_ENV=production babel src --out-dir lib",
"prepublish": "npm run clean && npm run lint && npm run test && npm run build"
},
"files": [
"lib",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/suzdalnitski/saferr.git"
},
"keywords": [
"error-handling",
"error",
"exception",
"async",
"await",
"promise"
],
"author": "Ilya Suzdalnitski <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/suzdalnitski/saferr/issues"
},
"homepage": "https://github.com/suzdalnitski/saferr#readme",
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.8.0",
"babel-plugin-add-module-exports": "^1.0.0",
"babel-preset-minify": "^0.5.0",
"cross-env": "^5.1.3",
"eslint": "^6.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.1.0",
"jest": "^24.8.0",
"prettier": "^1.18.2",
"rimraf": "^2.6.2"
}
}