-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
91 lines (91 loc) · 2.47 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
{
"name": "label-img",
"version": "0.0.72",
"description": "image annotation tool with javascript",
"main": "dist/labelImg.js",
"build": "dist/labelImg.min.js",
"eg": "example/labelImg.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"build": "rollup -c build/rollup.config.build.js && ls -l ./dist",
"dev": "rollup -c build/rollup.config.js -w",
"test": "jest __tests__/**",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md",
"postversion": "git push",
"prepublishOnly": "yarn build",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hold-baby/label-img.git"
},
"keywords": [
"labelme",
"annotate",
"deep-learning",
"image-annotation",
"label-image",
"标注",
"图片标注"
],
"author": "hold-baby",
"license": "MIT",
"bugs": {
"url": "https://github.com/hold-baby/label-img/issues"
},
"homepage": "https://github.com/hold-baby/label-img#readme",
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"**/*": "prettier --write ./src"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.5",
"@babel/preset-react": "^7.16.0",
"@babel/preset-typescript": "^7.14.5",
"@commitlint/cli": "^13.2.1",
"@commitlint/config-conventional": "^13.2.0",
"@rollup/plugin-commonjs": "17.0.0",
"@rollup/plugin-json": "4.1.0",
"@rollup/plugin-node-resolve": "7.1.3",
"@rollup/plugin-typescript": "6.1.0",
"@types/jest": "^26.0.23",
"@types/lodash": "4.14.165",
"@types/react": "^17.0.33",
"@types/react-dom": "^17.0.10",
"antd": "^4.16.13",
"babel-jest": "^27.0.2",
"conventional-changelog-cli": "^2.1.1",
"dayjs": "1.9.7",
"husky": "^7.0.4",
"jest": "^27.0.4",
"less": "^4.1.2",
"lint-staged": "^12.3.4",
"postcss": "^8.3.11",
"prettier": "^2.5.1",
"pretty-quick": "^3.1.3",
"react": "^17.0.2",
"react-colorful": "^5.5.1",
"react-dom": "^17.0.2",
"rollup": "2.34.2",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-banner2": "^1.2.2",
"rollup-plugin-browsersync": "^1.3.1",
"rollup-plugin-dts": "^2.0.1",
"rollup-plugin-postcss": "^4.0.1",
"rollup-plugin-terser": "7.0.2",
"ts-node": "^10.0.0",
"tslib": "2.0.3",
"typescript": "4.1.2"
},
"dependencies": {
"lodash": "^4.17.20"
}
}