-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.45 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
{
"name": "scheduled-event-emitter",
"version": "1.0.2",
"description": "Schedule events to be emitted in the future",
"engines": {
"node": ">=8"
},
"repository": {
"type": "git",
"url": "https://github.com/seppevs/scheduled-event-emitter.git"
},
"main": "src/ScheduledEventEmitter.js",
"scripts": {
"test": "jest --silent --coverage",
"coveralls": "jest --silent --coverage --coverageReporters=text-lcov | coveralls",
"lint": "eslint --cache --fix src/ test/"
},
"keywords": [
"eventemitter",
"schedule",
"scheduled",
"date",
"delay",
"delayed"
],
"author": "Sebastian Van Sande",
"license": "MIT",
"devDependencies": {
"coveralls": "^3.0.14",
"jest": "^25.4.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2"
},
"eslintConfig": {
"extends": [
"airbnb-base",
"prettier"
],
"parserOptions": {
"ecmaVersion": 2018
}
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js"
],
"coveragePathIgnorePatterns": [
"node_modules/",
"test/"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"testEnvironment": "node"
},
"prettier": {
"arrowParens": "always",
"singleQuote": true,
"trailingComma": "all"
}
}