-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.74 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
{
"name": "@xiel/outer-hooks",
"version": "0.0.5",
"description": "Lorem ipsum",
"main": "dist/index.js",
"module": "dist/outer-hooks.esm.js",
"typings": "dist/index.d.ts",
"scripts": {
"start": "tsdx watch --noClean",
"build": "tsdx build",
"test": "tsdx test",
"test:coverage": "tsdx test --coverage",
"test:watch": "tsdx test --watch",
"lint": "tsdx lint src --max-warnings 0",
"prepare": "tsdx build",
"stryker:run": "stryker run"
},
"files": [
"dist"
],
"peerDependencies": {},
"dependencies": {},
"devDependencies": {
"@stryker-mutator/core": "^5.4.1",
"@stryker-mutator/jest-runner": "^5.4.1",
"@testing-library/react": "^13.0.0",
"@types/jest": "^27.0.2",
"bundlewatch": "^0.3.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-app": "^6.2.2",
"eslint-plugin-simple-import-sort": "^7.0.0",
"tsdx": "^0.14.1",
"tslib": "^2.0.3"
},
"resolutions": {
"@typescript-eslint/eslint-plugin": "^4.0.0",
"@typescript-eslint/parser": "^4.0.0",
"typescript": "^4.4.3"
},
"engines": {
"node": ">=14"
},
"repository": {
"type": "git",
"url": "https://github.com/xiel/outer-hooks.git"
},
"author": "Felix Leupold <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/xiel/outer-hooks/issues"
},
"homepage": "https://github.com/xiel/outer-hooks#readme",
"jest": {
"collectCoverageFrom": [
"**/src/**/*.{js,jx,tsx,ts}",
"!**/node_modules/**",
"!**/dist/**",
"!**/build/**",
"!**/*.config.{js,jx,tsx,ts}"
]
},
"bundlewatch": {
"files": [
{
"path": "dist/*.js",
"maxSize": "1.2kB"
}
]
}
}