-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 1.96 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "simple-timeout-promise",
"version": "1.0.6",
"description": "a simple timed out promise implementation",
"main": "src/index.js",
"scripts": {
"eslint": "eslint . --cache",
"jest": "jest --coverageReporters=html",
"lint": "eslint . --cache --format junit -o reports/eslint/lint.xml",
"prettier": "prettier --no-semi --single-quote --arrow-parens always \"src/**/*.js\" --write",
"test": "jest",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chendoron/simple-timeout-promise.git"
},
"author": "Chen Doron <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/chendoron/simple-timeout-promise/issues"
},
"homepage": "https://github.com/chendoron/simple-timeout-promise#readme",
"keywords": [
"promise",
"promises",
"timeout",
"delay",
"async",
"await",
"bluebird",
"wrap",
"defer",
"delayed",
"reject",
"resolve",
"rejected",
"resolved",
"error"
],
"devDependencies": {
"eslint": "^5.9.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^22.0.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-standard": "^4.0.0",
"jest": "^23.6.0",
"jest-junit": "^5.2.0",
"prettier": "1.15.2"
},
"jest": {
"clearMocks": true,
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.{js}"
],
"coverageDirectory": "<rootDir>/reports/coverage",
"coverageReporters": [
"text",
"text-summary",
"cobertura"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"reporters": [
"default",
"jest-junit"
]
},
"jest-junit": {
"outputDirectory": "./reports/jest",
"outputName": "./junit.xml"
}
}