-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.82 KB
/
Copy pathpackage.json
File metadata and controls
101 lines (101 loc) · 2.82 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
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
92
93
94
95
96
97
98
99
100
101
{
"name": "celldega",
"version": "0.18.1",
"type": "module",
"engines": {
"node": ">=16",
"npm": ">=8.0.0"
},
"scripts": {
"dev": "npm run build -- --sourcemap=inline --watch",
"build": "node build.js",
"watch": "node build.js --watch",
"test": "npm run test:js && npm run test:py",
"test:js": "jest --coverage",
"test:js:watch": "jest --watch",
"test:py": "pytest --cov=src/celldega --cov-report=term-missing",
"test:fast": "npm run test:js:fast && npm run test:py:fast",
"test:js:fast": "jest",
"test:py:fast": "pytest",
"lint": "npm run lint:js && npm run lint:py",
"lint:js": "eslint js/ --ignore-pattern js/vendor/",
"lint:js:fix": "eslint js/ --ignore-pattern js/vendor/ --fix",
"lint:py": "ruff check src/",
"format": "npm run format:js && npm run format:py",
"format:js": "prettier --write js/ --ignore-path .prettierignore",
"format:js:check": "prettier --check js/ --ignore-path .prettierignore",
"format:py": "ruff format src/",
"check:js": "npm run lint:js && npm run format:js:check",
"fix:js": "npm run lint:js:fix && npm run format:js"
},
"dependencies": {
"@deck.gl-community/editable-layers": "^9.0.3",
"@loaders.gl/core": "^4.2.0",
"@luma.gl/core": "^9.0.12",
"@luma.gl/engine": "^9.0.12",
"@luma.gl/shadertools": "^9.0.12",
"@luma.gl/webgl": "^9.0.12",
"apache-arrow": "15.0.2",
"aws4fetch": "^1.0.20",
"d3": "^7.9.0",
"deck.gl": "^9.0.12",
"math.gl": "2.3.3",
"parquet-wasm": "^0.7.1"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@testing-library/jest-dom": "^6.6.3",
"esbuild": "^0.20.0",
"esbuild-plugin-wasm": "^1.1.0",
"eslint": "^9.27.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.4.0",
"globals": "^15.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jsdom": "^26.1.0",
"prettier": "3.6.2"
},
"repository": {
"type": "git",
"url": "https://github.com/broadinstitute/celldega.git"
},
"files": [
"src/celldega/static/*"
],
"main": "src/celldega/static/celldega.js",
"prettier": {
"semi": true,
"trailingComma": "es5",
"singleQuote": true,
"printWidth": 80,
"tabWidth": 2,
"useTabs": false,
"bracketSpacing": true,
"arrowParens": "always",
"endOfLine": "lf"
},
"jest": {
"testEnvironment": "jest-environment-jsdom",
"testMatch": [
"**/js/**/*.test.js",
"**/js/**/*.spec.js"
],
"collectCoverageFrom": [
"js/**/*.js",
"!js/vendor/**",
"!js/**/*.test.js",
"!js/**/*.spec.js"
],
"coverageDirectory": "coverage",
"coverageReporters": [
"text",
"lcov",
"html"
],
"setupFilesAfterEnv": [
"<rootDir>/jest.setup.js"
]
}
}