-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
33 lines (33 loc) · 866 Bytes
/
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
{
"name": "webmolkit",
"description": "Cheminformatics functionality for JavaScript platforms",
"author": "Dr. Alex M. Clark",
"license": "Apache 2",
"version": "2.0.4",
"repository": {
"type": "git",
"url": "git+https://github.com/aclarkxyz/web_molkit.git"
},
"main": ".",
"types": ".",
"files": [
"*"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.7",
"@typescript-eslint/parser": "^4.7",
"eslint": "7.15",
"raw-loader": "^4.0.2",
"ts-loader": "^9.3.1",
"typescript": "^5",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0"
},
"scripts": {
"lint": "eslint src/**/*.ts",
"build-tsc": "tsc",
"build-src": "webpack --config webpack-src.config.js",
"build-val": "webpack --config webpack-val.config.js",
"build": "tsc && webpack --config webpack-src.config.js && webpack --config webpack-val.config.js"
}
}