-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1023 Bytes
/
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
{
"name": "go-for-it",
"license": "MIT",
"version": "1.0.2",
"description": "Error handling à la golang.",
"engines": {
"node": "^8.5.0"
},
"homepage": "http://gunargessner.com/",
"author": {
"email": "[email protected]",
"name": "Gunar C. Gessner",
"url": "https://github.com/gunar"
},
"files": [
"src"
],
"main": "src/index.js",
"keywords": [
"async",
"await",
"control",
"flow",
"exception",
"error",
"catch"
],
"devDependencies": {
"@invisible/eslint-config": "^1.1.4",
"@invisible/publish": "^1.1.8",
"eslint": "^4.7.2",
"intelli-espower-loader": "^1.0.1",
"mocha": "^3.5.3",
"power-assert": "^1.4.4",
"yarn": "^1"
},
"repository": "[email protected]:gunar/go-for-it.git",
"scripts": {
"lint": "eslint --cache -f node_modules/eslint-formatter-pretty --ignore-path .gitignore .",
"pretest": "npm run lint",
"test": "mocha test/**/*.spec.js",
"test-watch": "mocha -w test/**/*.spec.js"
}
}