-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.57 KB
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
{
"name": "react-path-marker",
"version": "1.0.8",
"license": "MIT",
"displayName": "React Path Marker",
"description": "A marker for SVG paths in React",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=10"
},
"peerDependencies": {
"react": ">=16.0.0",
"react-dom": ">=16.0.0"
},
"devDependencies": {
"@types/jest": "^25.1.4",
"husky": "^4.2.3",
"tsdx": "^0.13.0",
"tslib": "^1.11.1",
"typescript": "^3.8.3",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.6"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build --format esm",
"test": "tsdx test --passWithNoTests",
"lint": "tsdx lint",
"prepare": "tsdx build --format esm"
},
"eslintConfig": {
"extends": "react-app"
},
"module": "dist/react-path-marker.esm.js",
"authors": [
"yanivam (https://github.com/yanivam)"
],
"keywords": [
"react",
"path",
"component",
"typescript",
"svg",
"marker"
],
"bugs": "https://github.com/yanivam/react-path-marker/issues",
"repository": "github:yanivam/react-path-marker",
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}