-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
77 lines (77 loc) · 1.95 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
{
"author": "Lily Cartelet <[email protected]>",
"bugs": {
"url": "https://github.com/eorzea-weather/node-eorzea-weather/issues"
},
"dependencies": {},
"description": "Weather forecast for Eorzea.",
"devDependencies": {
"@types/jest": "^27.5.2",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.5.1",
"microbundle": "^0.14.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.5",
"typescript": "^4.9.5"
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking",
"plugin:prettier/recommended"
],
"parserOptions": {
"project": "tsconfig.json"
},
"root": true
},
"files": [
"dist"
],
"homepage": "https://github.com/eorzea-weather/eorzea-weather",
"jest": {
"preset": "ts-jest"
},
"keywords": [
"Eorzea",
"FFXIV",
"FINAL FANTASY XIV",
"Weather"
],
"license": "MIT",
"main": "dist/eorzea-weather.js",
"module": "dist/eorzea-weather.module.js",
"name": "eorzea-weather",
"prettier": {
"semi": true,
"singleQuote": true,
"trailingComma": "all"
},
"repository": {
"type": "git",
"url": "https://github.com/eorzea-weather/node-eorzea-weather.git"
},
"scripts": {
"build": "microbundle",
"clean": "rimraf dist",
"dev": "microbundle watch",
"format": "prettier --write .",
"format-check": "prettier --check .",
"lint": "eslint .",
"prebuild": "npm-run-all clean",
"prepublishOnly": "npm-run-all lint test build",
"test": "jest"
},
"source": "src/index.ts",
"types": "dist/index.d.ts",
"unpkg": "dist/eorzea-weather.umd.js",
"version": "3.2.0"
}