-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
61 lines (61 loc) · 1.56 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
{
"author": "Lily Cartelet <flowercartelet@gmail.com>",
"bugs": {
"url": "https://github.com/eorzea-weather/eorzea-time/issues"
},
"description": ":clock3: A clock of the Eorzea time.",
"devDependencies": {
"@types/jest": "^27.5.2",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"jest": "^27.5.1",
"microbundle": "^0.14.2",
"npm-run-all": "^4.1.5",
"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"
],
"parserOptions": {
"project": "tsconfig.json"
},
"root": true
},
"files": [
"dist"
],
"homepage": "https://github.com/eorzea-weather/eorzea-time",
"jest": {
"preset": "ts-jest"
},
"license": "MIT",
"main": "dist/eorzea-time.js",
"module": "dist/eorzea-time.module.js",
"name": "eorzea-time",
"repository": {
"type": "git",
"url": "https://github.com/eorzea-weather/eorzea-time.git"
},
"resolutions": {
"microbundle/tslib": "^2.8.1"
},
"scripts": {
"build": "microbundle",
"clean": "rimraf dist",
"dev": "microbundle watch",
"lint": "eslint --ext .ts .",
"prebuild": "npm-run-all clean",
"prepublishOnly": "npm-run-all lint test",
"test": "jest"
},
"source": "src/eorzea-time.ts",
"types": "dist/eorzea-time.d.ts",
"unpkg": "dist/eorzea-time.umd.js",
"version": "3.0.0"
}