-
-
Notifications
You must be signed in to change notification settings - Fork 78
/
Copy pathpackage.json
59 lines (59 loc) · 1.41 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
{
"name": "wildbook",
"version": "1.0.0",
"description": "node for cypress testing",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky install",
"lint": "eslint '**/*.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WildbookOrg/Wildbook.git"
},
"keywords": [
"wildbook",
"ai",
"machine",
"learning",
"image",
"analysis",
"biology",
"science",
"citizen",
"science"
],
"author": "",
"license": "GPL-2.0-only",
"bugs": {
"url": "https://github.com/WildbookOrg/Wildbook/issues"
},
"homepage": "https://github.com/WildbookOrg/Wildbook#readme",
"lint-staged": {
"*.{js,jsx}": ["eslint --fix", "prettier --write"]
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/eslint-parser": "^7.25.9",
"@babel/preset-env": "^7.25.4",
"@babel/preset-react": "^7.24.7",
"@eslint/js": "^9.9.1",
"cypress": "^13.7.1",
"eslint": "^9.15.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.9.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"globals": "^15.0.0",
"husky": "^7.0.4",
"lint-staged": ">=8",
"prettier": "^3.3.3",
"jest": "^27.5.1"
},
"jest": {
"collectCoverage": true,
"coverageReporters": ["lcov", "text"],
"coverageDirectory": "./coverage"
}
}