-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
80 lines (80 loc) · 2.22 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "rdkit-structure-renderer",
"version": "1.2.25",
"description": "A JS library to render molecules as HTML5 Canvas or SVG using RDKit MinimalLib",
"main": "dist/rdkit-structure-renderer-umd.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npm run build:prod",
"build:dev": "webpack --mode=development",
"build:prod": "webpack --mode=production --node-env=production",
"lint": "eslint src",
"lint:fix": "eslint --fix --ext .js,.jsx .",
"watch": "webpack --watch",
"serve": "webpack serve"
},
"repository": {
"type": "git",
"url": "https://github.com/rdkit/rdkit-structure-renderer.git"
},
"keywords": [
"RDKit",
"structure",
"2D",
"layout",
"canvas",
"SVG"
],
"author": "Novartis Institutes for BioMedical Research",
"license": "BSD-3-Clause",
"dependencies": {
"changedpi": "^1.0.4",
"core-js": "^3.27.1",
"uuid": "3.4.0"
},
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@webpack-cli/generators": "^2.4.2",
"babel-loader": "^8",
"eslint": "^8.10.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-webpack-plugin": "^3.1.1",
"html-webpack-plugin": "^5.5.0",
"prettier": "^2.5.1",
"webpack": "^5.69.1",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4"
},
"babel": {
"presets": [
"@babel/preset-env"
],
"plugins": [
[
"@babel/transform-runtime"
]
]
},
"browser": {
"crypto": false,
"fs": false,
"path": false
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"ie 11",
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}