-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpackage.json
104 lines (104 loc) · 2.71 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
{
"name": "@antv/l7-draw",
"version": "3.1.5",
"description": "A drawing package for L7",
"license": "MIT",
"scripts": {
"prepare": "husky install",
"start": "dumi dev",
"docs:build": "dumi build",
"docs:deploy": "gh-pages -d docs-dist",
"less": "lessc ./src/control/index.less ./src/control/index.css",
"analyze": "ANALYZE=1 dumi build",
"build": "father-build",
"deploy": "npm run docs:build && npm run docs:deploy",
"release": "npm run build && npm publish",
"prettier": "prettier --write \"**/*.{js,jsx,tsx,ts,less,md,json}\"",
"test": "umi-test",
"test:coverage": "umi-test --coverage",
"ci": "npm run prettier && npm run build",
"prepublishOnly": "npm run ci"
},
"files": [
"lib",
"es",
"README.md",
"dist/l7-draw.*"
],
"main": "lib/index.js",
"module": "es/index.js",
"typings": "es/index.d.ts",
"browser": "dist/l7-draw.min.js",
"dependencies": {
"@turf/turf": "^6.5.0",
"eventemitter3": "^4.0.7",
"lodash": "^4.17.21",
"mousetrap": "^1.6.5",
"tippy.js": "^6.3.7"
},
"devDependencies": {
"@antv/dumi-theme-antv": "^0.2.1",
"@antv/l7": "^2.21.8",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@optimize-lodash/rollup-plugin": "^3.0.0",
"@testing-library/jest-dom": "^5.15.1",
"@testing-library/react": "^12.1.2",
"@types/jest": "^27.0.3",
"@types/lodash": "^4.14.177",
"@types/mousetrap": "^1.6.9",
"@types/next-tick": "^1.0.0",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"@umijs/fabric": "^2.8.1",
"@umijs/test": "^3.0.5",
"dumi": "^1.1.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^24.7.0",
"eslint-plugin-prettier": "^3.4.1",
"father-build": "^1.17.2",
"gh-pages": "^3.0.0",
"husky": "^8.0.1",
"lint-staged": "^10.0.7",
"prettier": "^2.2.1",
"rollup-plugin-analyzer": "^4.0.0",
"rollup-plugin-node-polyfills": "^0.2.1",
"yorkie": "^2.0.0"
},
"peerDependencies": {
"@antv/l7": "^2.21.8"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{ts,tsx}": "eslint --fix",
"*.{ts,tsx,md,json}": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"keywords": [
"antv",
"l7",
"draw",
"l7 draw"
],
"author": {
"name": "AntV",
"url": "https://antv.vision/"
},
"repository": {
"type": "git",
"url": "https://github.com/antvis/l7-draw"
},
"bugs": {
"url": "https://github.com/antvis/l7-draw/issues"
}
}