forked from lab-cosmo/chemiscope
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.64 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.64 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
{
"name": "chemiscope",
"version": "0.3.0-beta.1",
"description": "An interactive structure/property explorer for materials and molecules",
"author": "Guillaume Fraux <guillaume.fraux@epfl.ch>",
"license": "BSD-3-Clause",
"main": "dist/chemiscope.min.js",
"types": "dist/chemiscope.d.ts",
"engines": {
"npm": ">=6"
},
"files": [
"dist/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/cosmo-epfl/chemiscope.git"
},
"scripts": {
"test": "npm run test:mocha && npm run test:lint",
"test:mocha": "mochapack --webpack-config=tests/webpack.config.ts --recursive --glob '*.test.ts' tests",
"test:lint": "eslint src && prettier --check src",
"build": "rimraf dist && webpack --mode production && npm run merge-dts",
"download-examples": "ts-node ./utils/download-examples.ts",
"api-docs": "typedoc",
"start": "npm run download-examples && webpack serve --mode development --static ./app",
"chemiscope-dts": "dts-bundle-generator -o dist/chemiscope.d.ts dist/src/index.d.ts",
"molecule-viewer-dts": "dts-bundle-generator -o dist/molecule-viewer.d.ts dist/src/structure/widget.d.ts",
"merge-dts": "npm run chemiscope-dts && npm run molecule-viewer-dts",
"prepublishOnly": "npm run build",
"pretty": "prettier --write src"
},
"devDependencies": {
"@types/chai": "^4.2.12",
"@types/glob": "^7.1.3",
"@types/jquery": "^3.5.5",
"@types/markdown-it": "^12",
"@types/mocha": "^8.0.3",
"@types/node": "^15",
"@types/pako": "^1.0.1",
"@types/plotly.js": "^1.50.15",
"@types/tmp": "^0.2.0",
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"3dmol": "^1.6.4",
"assert": "^2.0.0",
"bootstrap": "^4.6.0",
"bubleify": "^2.0.0",
"buffer": "^6.0.2",
"canvas": "^2.6.1",
"chai": "^4.2.0",
"css-loader": "^5.0.0",
"dts-bundle-generator": "^5.1.0",
"eslint": "^7.5.0",
"eslint-config-prettier": "^8.3",
"eslint-plugin-prettier": "^3.1.4",
"html-loader": "^2.1",
"ify-loader": "^1.1.0",
"jquery": "^3.6.0",
"jsdom": "^16.4.0",
"markdown-it": "^12.0.2",
"mocha": "^8.1.2",
"mochapack": "^2.1.2",
"node-loader": "^2.0",
"plotly.js": "1.58.4",
"popper.js": "^1.16.1",
"prettier": "2.3.0",
"process": "^0.11.10",
"rimraf": "^3.0.2",
"style-loader": "^2.0.0",
"tmp": "^0.2.1",
"ts-loader": "^9.1",
"ts-node": "^9.0.0",
"typedoc": "^0.19",
"typedoc-plugin-external-module-name": "^4",
"typescript": "^4.0.3",
"webpack": "^5.37.0",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "4.0.0-beta.3"
}
}