-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
138 lines (138 loc) · 4.02 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"name": "@xivstats/lodestone",
"version": "0.3.0",
"description": "Module for pulling character profiles from the Final Fantasy XIV Lodestone",
"main": "lib/index.js",
"files": [
"lib/**/*.js"
],
"scripts": {
"build": "tsc",
"commit": "cz",
"docs": "typedoc --out docs/api --excludeNotDocumented --hideBreadcrumbs --readme none src/**/*.ts",
"test": "npm run test:unit && npm run test:integration",
"test:unit": "jest \"src\\/.*\\/__tests__\\/.*\\.test\\.ts\"",
"test:integration": "jest \"src\\/.*\\/__itests__\\/.*\\.itest\\.ts\"",
"test:u": "npm run test:unit",
"test:i": "npm run test:integration",
"test:ci": "npm run test:ci:unit && npm run test:ci:integration",
"test:ci:unit": "JEST_JUNIT_OUTPUT_FILE=reports/jest-unit.xml jest \"src\\/.*\\/__tests__\\/.*\\.test\\.ts\" --ci --reporters=default --reporters=jest-junit --collect-coverage ",
"test:ci:integration": "JEST_JUNIT_OUTPUT_FILE=reports/jest-integration.xml jest \"src\\/.*\\/__itests__\\/.*\\.itest\\.ts\" --ci --reporters=default --reporters=jest-junit ",
"format": "prettier --write src/**/*.ts src/**/*.test.ts src/**/*.itest.ts",
"format:check": "prettier --check src/**/*.ts src/**/*.test.ts src/**/*.itest.ts",
"lint": "eslint --ext .ts --ext .js src --color",
"lint:fix": "eslint --fix --ext .ts --ext .js src --color",
"prepare": "husky install",
"release": "semantic-release --no-ci",
"release:dry": "semantic-release --no-ci --dry-run",
"release:ci": "semantic-release"
},
"repository": {
"type": "git",
"url": "git@github.com:XIVStats/lodestone.git"
},
"keywords": [
"final",
"fantasy",
"xiv",
"14",
"lodestone",
"player",
"character",
"scraper"
],
"author": {
"name": "Final Fantasy XIV Statistics Project",
"email": "hello@ffxivcensus.com",
"url": "https:/ffxivcensus.com"
},
"contributors": [
{
"name": "Peter Reid",
"email": "peter@reidweb.com",
"url": "reidweb.com"
},
{
"name": "Padraig Fahy",
"email": "crakila@crakila.moe",
"url": "crakila.dev"
},
{
"name": "Jonathan Price",
"url": "jonathanprice.uk"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/XIVStats/lodestone/issues"
},
"engines": {
"node": ">14",
"npm": ">6"
},
"homepage": "https://github.com/XIVStats/lodestone#readme",
"dependencies": {
"axios": "^0.24.0",
"cheerio": "^1.0.0-rc.10",
"p-limit": "^3.1.0"
},
"devDependencies": {
"@commitlint/cli": "^16.0.2",
"@commitlint/config-conventional": "^16.0.0",
"@semantic-release/changelog": "^6.0.1",
"@types/jest": "^27.4.0",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"babel-jest": "^27.4.6",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.7.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsdoc": "^37.6.1",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-notice": "^0.9.10",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^7.0.4",
"jest": "^27.4.7",
"jest-junit": "^13.0.0",
"prettier": "^2.5.1",
"prettier-eslint": "^13.0.0",
"prettier-eslint-cli": "^5.0.1",
"semantic-release": "^19.0.3",
"ts-jest": "^27.1.3",
"typedoc": "^0.22.10",
"typedoc-plugin-markdown": "^3.11.11",
"typescript": "^4.5.4"
},
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true",
"commit-msg": "echo \"[Husky] commit-msg\"",
"pre-commit": "echo \"[Husky] pre-commit\"",
"pre-push": "echo \"[Husky] pre-push\""
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"jest-junit": {
"outputDirectory": "reports",
"outputName": "jest-junit.xml",
"ancestorSeparator": " › ",
"uniqueOutputName": "false",
"suiteNameTemplate": "{filepath}",
"classNameTemplate": "{classname}",
"titleTemplate": "{title}"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}