-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.15 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
{
"name": "foxhole-warapi",
"version": "1.7.0",
"description": "Foxhole WarAPI utilities and types",
"source": "src/index.ts",
"main": "index.js",
"types": "index.d.ts",
"module": "index.mjs",
"scripts": {
"test": "jest",
"build": "rimraf dist && rollup -c rollup.config.mjs",
"lint": "eslint \"src/**/*.{js,ts,tsx}\" --cache",
"lint:fix": "npm run lint -- --fix",
"docs": "coverage-badge-creator && typedoc --out docs --readme none src/index.ts",
"semantic-release": "semantic-release",
"precommit": "lint-staged"
},
"author": "Stuart van Beek <[email protected]>",
"license": "ISC",
"files": [
"./index.*",
"docs"
],
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.21.0",
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^9.0.2",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/jest": "^29.4.0",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"coverage-badge-creator": "^1.0.17",
"eslint": "^8.34.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"jest": "^29.4.3",
"lint-staged": "^13.1.2",
"prettier": "^2.8.4",
"rimraf": "^4.1.2",
"rollup": "^3.17.2",
"rollup-plugin-dts": "^5.2.0",
"rollup-plugin-esbuild": "^5.0.0",
"semantic-release": "^20.1.0",
"tslib": "^2.5.0",
"typedoc": "^0.23.25",
"typedoc-plugin-markdown": "^3.14.0",
"typescript": "^4.9.5"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"eslint --max-warnings=0"
]
},
"repository": {
"type": "git",
"url": "https://github.com/art0rz/foxhole-warapi.git"
}
}