-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (47 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (47 loc) · 1.1 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
{
"name": "@yakika/func",
"version": "1.0.0",
"description": "Error handling without try/catch",
"main": "src/index.js",
"directories": {
"src": "src"
},
"keywords": [
"error",
"trycatch"
],
"bugs": {
"url": "https://github.com/Yakika/func/issues"
},
"engines": {
"node": ">=6"
},
"repository": {
"type": "git",
"url": "git@github.com:Yakika/func.git"
},
"author": "Yvan da Silva",
"license": "MIT",
"private": false,
"scripts": {
"lint": "eslint src/. tests/. --config eslintrc.json",
"lint-fix": "yarn run lint --fix",
"test": "yarn run lint && yarn run jest",
"coverage": "yarn run jest --coverage",
"coveralls": "yarn run coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"devDependencies": {
"coveralls": "^3.0.0",
"eslint": "^4.19.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-jest": "^21.15.0",
"eslint-plugin-prettier": "^2.6.0",
"jest": "^22.4.2",
"pre-commit": "^1.2.2",
"prettier": "^1.11.1"
},
"pre-commit": [
"lint-fix",
"test"
]
}