-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.32 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.32 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
{
"name": "cell-counter",
"version": "1.0.0",
"description": "ImageJ operations on cell images",
"engines": {
"node": ">= 14.8.0"
},
"devDependencies": {
"@types/java": "^0.9.0",
"@types/jest": "^26.0.10",
"@types/node": "^12.12.54",
"@types/when": "^2.4.33",
"@typescript-eslint/eslint-plugin": "~3.2.0",
"@typescript-eslint/parser": "~3.2.0",
"eslint": "~7.2.0",
"eslint-config-prettier": "~6.11.0",
"eslint-plugin-jest": "~23.13.2",
"jest": "~26.0.1",
"nodemon": "^2.0.4",
"prettier": "~2.0.5",
"rimraf": "~3.0.2",
"ts-jest": "^26.2.0",
"tsutils": "~3.17.0",
"typescript": "^3.9.7"
},
"scripts": {
"clean": "rimraf coverage build tmp",
"build": "tsc -p tsconfig.release.json",
"build:watch": "tsc -w -p tsconfig.release.json",
"start": "node -r dotenv/config ./build/src/main.js",
"debug": "node --inspect-brk ./build/src/main.js",
"lint": "eslint . --ext .ts,.tsx",
"test": "jest --silent --coverage",
"test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
"test:watch": "jest --watch"
},
"author": "Marc Mortensen <marcmortensen77@gmail.com>",
"private": true,
"license": "Apache-2.0",
"dependencies": {
"dotenv": "^8.2.0",
"java": "^0.12.1",
"tslib": "^2.0.1",
"when": "^3.7.8"
}
}