-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
84 lines (84 loc) · 2 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
{
"name": "react-image-mapper2",
"version": "0.0.3",
"description": "React Component to highlight interactive zones in images",
"main": "build/index.js",
"module": "build/index.es.js",
"jsnext:main": "build/index.es.js",
"homepage": "https://github.com/yj-ang/react-image-mapper2",
"repository": {
"type": "git",
"url": "https://github.com/yj-ang/react-image-mapper2.git"
},
"bugs": {
"url": "https://github.com/yj-ang/react-image-mapper2/issues"
},
"scripts": {
"build": "rollup -c",
"lint": "standard",
"format": "prettier-standard --format",
"test": "jest --coverage"
},
"keywords": [
"react",
"react-image-mapper",
"image mapper",
"image map"
],
"author": {
"name": "YJ Ang",
"email": "[email protected]",
"url": "https://github.com/yj-ang"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.9.6",
"@testing-library/jest-dom": "^5.7.0",
"@testing-library/react": "^10.0.4",
"@types/jest": "^25.2.1",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.7",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "^8.1.0",
"canvas": "^2.6.1",
"jest": "^26.0.1",
"prettier-standard": "^16.3.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"rollup": "^2.8.2",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.2",
"rollup-plugin-typescript2": "^0.27.0",
"standard": "^14.3.3",
"standard-prettier": "^1.0.1",
"ts-jest": "^25.5.1",
"ts-loader": "^7.0.3",
"typescript": "^3.8.3"
},
"peerDependencies": {
"react": "^16",
"react-dom": "^16"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "jsdom",
"testPathIgnorePatterns": [
"build/"
]
},
"standard": {
"ignore": [
"node_modules/",
"build/"
],
"globals": [
"describe",
"it",
"test",
"expect",
"afterAll",
"jest"
]
}
}