-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.28 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
{
"name": "latlon-easy",
"description": "经纬度工具集合",
"version": "0.0.8",
"author": "WeiYang<[email protected]>",
"keywords": [
"typescript",
"rollup",
"esm",
"umd",
"cjs"
],
"repository": {
"type": "git",
"url": "https://github.com/wy1348666498/latlon-easy.git"
},
"private": false,
"license": "MIT",
"browserslist": [
"last 2 versions",
"> 5%",
"not ie <= 9"
],
"main": "lib/index.cjs.js",
"module": "lib/index.esm.js",
"jsnext:main": "lib/index.esm.js",
"browser": "lib/index.umd.js",
"scripts": {
"build": "rollup -c",
"test": "jest",
"coveralls": "jest --coverage",
"lint:eslint": "eslint --cache --max-warnings 0 \"packages/**/*.{js,ts}\" --fix",
"lint:prettier": "prettier --write \"packages/**/*\"",
"prepare": "husky install",
"tsc": "tsc"
},
"lint-staged": {
"packages/**/__tests__/*.ts": "npm run test",
"packages/**/*.ts": [
"npm run lint:eslint",
"prettier --write"
]
},
"files": [
"lib",
"README.md",
"LICENSE"
],
"types": "lib/index.d.ts",
"devDependencies": {
"@babel/core": "^7.23.3",
"@babel/preset-env": "^7.23.3",
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@rollup/plugin-alias": "^5.1.0",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.5",
"@types/jest": "^29.5.10",
"@types/json-bigint": "^1.0.4",
"@types/lodash-es": "^4.17.10",
"@types/nprogress": "^0.2.3",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"babel-jest": "^29.7.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard-with-typescript": "^40.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-n": "^16.3.1",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-less-loader": "^0.2.0",
"lint-staged": "^15.1.0",
"postcss": "^8.4.31",
"prettier": "^3.1.0",
"rollup": "^4.4.1",
"rollup-plugin-postcss": "^4.0.2",
"ts-jest": "^29.1.1",
"tslib": "^2.6.2",
"typescript": "^5.3.2"
}
}