-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.92 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
{
"name": "@lauri-codes/materia",
"version": "1.0.1",
"description": "Materia is a Javascript library for creating browser-based 3D visualizations of atomistic structures and other material properties.",
"author": "Lauri Himanen",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/lauri-codes/materia"
},
"main": "src/js/materia.js",
"scripts": {
"brillouin-zone": "concurrently \"gulp\" \"npx browser-sync start --config 'bs-config.js' --startPath examples/brillouin_zone/brillouin_zone.html\"",
"structure-periodic": "concurrently \"gulp\" \"npx browser-sync start --config 'bs-config.js' --startPath examples/structure-periodic/structure.html\"",
"structure-finite": "concurrently \"gulp\" \"npx browser-sync start --config 'bs-config.js' --startPath examples/structure-finite/structure.html\"",
"structure-2d": "concurrently \"gulp\" \"npx browser-sync start --config 'bs-config.js' --startPath examples/structure-2d/structure.html\"",
"structure-1d": "concurrently \"gulp\" \"npx browser-sync start --config 'bs-config.js' --startPath examples/structure-1d/structure.html\"",
"topology": "concurrently \"gulp\" \"npx browser-sync start --config 'bs-config.js' --startPath examples/topology/structure.html\"",
"build": "gulp build"
},
"dependencies": {
"lodash": "^4.17.21",
"object-hash": "^3.0.0",
"three": "^0.141.0",
"three.meshline": "1.4.0",
"voronoi-diagram": "1.0.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"browser-sync": "^2.27.9",
"concurrently": "^5.3.0",
"eslint": "^7.32.0",
"gulp": "^4.0.2",
"gulp-typescript": "^6.0.0-alpha.1",
"merge-stream": "^2.0.0",
"raw-loader": "^4.0.2",
"script-loader": "^0.7.2",
"typescript": "^3.9.10",
"webpack": "^5.72.0"
},
"files": [
"src/js/**/*",
"dist/**/*"
]
}