-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.21 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": "tukio",
"version": "2.0.0",
"description": "Publish-subscribe pattern implementation using class based events.",
"keywords": [
"publish",
"subscribe",
"eventbus",
"events",
"event",
"observer",
"typescript"
],
"main": "dist/index.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/skrivle/tukio.git"
},
"scripts": {
"build": "rimraf ./dist && tsc",
"test": "jest",
"test:watch": "jest --watch",
"precommit": "pretty-quick --staged",
"prepare": "husky install && npm test && npm run build"
},
"author": "Jelle Versele",
"license": "MIT",
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/lodash": "^4.14.170",
"husky": "^6.0.0",
"jest": "^27.0.1",
"lint-staged": "^11.0.0",
"lodash": "^4.17.21",
"np": "^7.5.0",
"prettier": "^2.3.0",
"rimraf": "^2.6.2",
"ts-jest": "^27.0.0",
"typescript": "^4.2.4"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}