-
Notifications
You must be signed in to change notification settings - Fork 290
/
package.json
32 lines (31 loc) · 1.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
{
"name": "camicroscope",
"version": "3.0.0",
"description": "",
"scripts": {
"test" : "jest",
"test-mocha": "mocha test --recursive",
"lint": "eslint ./core/*.js ./components/**/*.js ./common/smartpen/*.js ./apps/*.js ./apps/port/*.js ./apps/heatmap/*.js ./apps/multi/*.js ./apps/labeling/*.js ./apps/loader/*.js ./apps/model/*.js ./apps/segment/*.js ./apps/model/**/*.js ./apps/segment/**/*.js ./apps/viewer/*.js --quiet",
"lint-fix": "eslint ./core/*.js ./components/**/*.js ./common/smartpen/*.js ./apps/*.js ./apps/port/*.js ./apps/heatmap/*.js ./apps/multi/*.js ./apps/labeling/*.js ./apps/loader/*.js ./apps/model/*.js ./apps/segment/*.js ./apps/model/**/*.js ./apps/segment/**/*.js ./apps/viewer/*.js --quiet --fix"
},
"author": "",
"license": "BSD-3-Clause",
"dependencies": {
"chai": "^4.3.7",
"eslint": "^6.8.0",
"eslint-config-google": "^0.14.0",
"express": "^4.18.2",
"jsdom": "^16.5.0",
"lodash": "^4.17.21",
"mocha": "^10.2.0",
"node-fetch": "^2.6.7",
"tippy": "0.0.0"
},
"devDependencies": {
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0"
},
"jest": {
"testEnvironment": "jest-environment-jsdom"
}
}