-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
59 lines (59 loc) · 1.38 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": "pdb-images",
"version": "2.5.0",
"description": "Generates images from mmCIF/BCIF files",
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"lint": "eslint src",
"jest": "jest",
"test": "npm run lint && npm run jest"
},
"files": [
"lib/"
],
"directories.lib": "lib/",
"bin": {
"pdb-images": "./lib/cli/pdb-images.js",
"pdb2cif": "./lib/cli/pdb2cif.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PDBeurope/pdb-images.git"
},
"keywords": [
"macromolecules",
"image",
"Protein Data Bank"
],
"author": "Adam Midlik",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/PDBeurope/pdb-images/issues"
},
"homepage": "https://github.com/PDBeurope/pdb-images#readme",
"devDependencies": {
"@stylistic/eslint-plugin": "^2.6.4",
"@types/argparse": "^2.0.16",
"@types/gl": "^6.0.2",
"@types/jest": "^29.5.0",
"@types/jpeg-js": "^0.3.7",
"@types/pngjs": "^6.0.1",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.5",
"eslint": "^9.9.0",
"globals": "^15.9.0",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"typescript": "^5.5.4",
"typescript-eslint": "^8.2.0"
},
"dependencies": {
"argparse": "^2.0.1",
"gl": "^6.0.2",
"log4js": "^6.9.1",
"molstar": "~4.5.0",
"pngjs": "^6.0.0",
"tslib": "^2.5.0"
}
}