-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.52 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
{
"name": "pietile-eventemitter",
"version": "1.0.1",
"license": "MIT",
"keywords": [
"EventEmitter",
"typed",
"TypeScript"
],
"scripts": {
"build": "rimraf dist && tsc --build tsconfig.build.json",
"test": "jest",
"test:watch": "jest --watch",
"prettify": "import-sort --write 'src/**/*.{ts,tsx}' && prettier --write 'src/**/*.{ts,tsx}'"
},
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"devDependencies": {
"@types/jest": "~26.0.0",
"@typescript-eslint/eslint-plugin": "^4.0.0",
"@typescript-eslint/parser": "^4.0.0",
"dts-jest": "~23.3.0",
"eslint": "~7.16.0",
"eslint-config-airbnb-base": "~14.2.0",
"eslint-config-prettier": "~7.1.0",
"eslint-plugin-import": "^2.18.0",
"husky": "~4.3.0",
"import-sort": "~6.0.0",
"import-sort-cli": "~6.0.0",
"import-sort-parser-typescript": "~6.0.0",
"import-sort-style-pietile": "~1.2.0",
"jest": "~26.6.0",
"lint-staged": "~10.5.0",
"prettier": "~2.2.0",
"rimraf": "~3.0.0",
"ts-jest": "~26.4.0",
"typescript": "~4.1.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"import-sort --write",
"prettier --write",
"git add",
"jest --bail --findRelatedTests"
]
},
"bugs": {
"url": "https://github.com/pietile/pietile-eventemitter/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/pietile/pietile-eventemitter.git"
}
}