-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.84 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.84 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "eventprocessor",
"version": "1.4.2",
"description": "A middleware-based event-handling system",
"keywords": [],
"homepage": "https://github.com/PaulBrachmann/eventprocessor#readme",
"bugs": {
"url": "https://github.com/PaulBrachmann/eventprocessor/issues"
},
"license": "BSD-3-Clause",
"author": "Paul Brachmann",
"contributors": [
{
"name": "Paul Brachmann",
"email": "mail@paulbrachmann.com"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/PaulBrachmann/eventprocessor.git"
},
"scripts": {
"build": "tsc -p ./tsconfig.prod.json -d",
"clean": "rimraf dist",
"format": "run-p format:*",
"format:js": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"format:json": "prettier --write {.,**}/*.json",
"lint": "run-p lint:*",
"lint:js": "eslint . --ext .js,.jsx,.ts,.tsx",
"compile": "tsc --noEmit -p . --pretty",
"test": "jest --env=jsdom",
"coverage": "jest --env=jsdom --coverage"
},
"husky": {
"hooks": {
"pre-commit": "yarn compile && lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"eslint --fix"
],
"src/**/*.{json}": [
"prettier --write"
]
},
"dependencies": {},
"devDependencies": {
"@types/jest": "^25.1.2",
"@types/node": "^8.0.20",
"@typescript-eslint/eslint-plugin": "2.19.0",
"@typescript-eslint/parser": "^2.20.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-typescript": "^7.0.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^4.2.3",
"jest": "^25.1.0",
"lint-staged": "^10.0.7",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1",
"rimraf": "^3.0.2",
"ts-jest": "^25.2.1",
"typescript": "^3.7.5"
},
"jest": {
"preset": "ts-jest"
}
}