forked from stur86/crystvis-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 2.81 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "@ccp-nc/crystvis-js",
"version": "0.5.0",
"description": "A Three.js based crystallographic visualisation tool",
"main": "index.js",
"type": "module",
"watch": {
"build-demo": {
"patterns": [
"demo/main.js",
"lib/*",
"lib/*/*",
"lib/*/*/*"
],
"extensions": "js,json"
},
"build-html-test": {
"patterns": [
"test/test-html/index.js",
"lib/*",
"lib/*/*",
"lib/*/*/*"
],
"extensions": "js,json"
},
"build-resources": {
"patterns": [
"lib/assets/fonts/*",
"lib/shaders/*"
],
"extensions": "png,fnt,vert,frag"
}
},
"scripts": {
"test": "mocha --reporter spec",
"start": "npm run watch-testserver",
"clean-docs": "rm -rf docs/* || true",
"predocs": "npm run clean-docs",
"docs": "jsdoc -d docs -u docs-tutorials --configure jsconf.json index.js; touch docs/.nojekyll",
"predeploy-docs": "npm run docs",
"deploy-docs": "gh-pages -d docs",
"prepare": "npm run build-resources",
"build-fonts": "node scripts/build-fonts.js",
"build-demo": "node scripts/build-bundle.js demo/main.js demo/demo.js",
"build-resources": "node scripts/build-resources.js",
"build-html-test": "node scripts/build-bundle.js test/test-html/index.js test/test-html/testbuild.js",
"watch-testserver": "npx serve & npm-watch build-demo & npm-watch build-html-test & npm-watch build-resources"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ccp-nc/crystvis-js.git"
},
"keywords": [
"Three.js",
"crystallography",
"visualisation",
"webgl"
],
"author": "Simone Sturniolo",
"contributors": [
{
"name": "Kane Shenton",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ccp-nc/crystvis-js/issues"
},
"homepage": "https://github.com/ccp-nc/crystvis-js#readme",
"dependencies": {
"@jkshenton/three-bmfont-text": "^3.0.5",
"buffer": "^6.0.3",
"chroma-js": "^2.4.2",
"@ccp-nc/crystcif-parse": "^0.2.9",
"isosurface": "^1.0.0",
"jquery": "^3.7.1",
"load-bmfont": "^1.4.1",
"lodash": "^4.17.21",
"mathjs": "^12.3.0",
"three": "^0.137.0",
"yargs-parser": "^21.1.1"
},
"devDependencies": {
"@babel/eslint-parser": "^7.23.3",
"chai": "^5.0.0",
"chai-almost": "^1.0.1",
"clean-jsdoc-theme": "^4.2.17",
"datauri": "^4.1.0",
"elliptic": ">=6.5.4",
"esbuild": "^0.19.11",
"eslint": "^8.56.0",
"gh-pages": "^6.1.1",
"glob": "^10.3.10",
"jpeg-js": ">=0.4.4",
"jsdoc": "^4.0.2",
"minimist": "^1.2.8",
"mocha": "^10.2.0",
"msdf-bmfont-xml": "^2.7.0",
"npm-watch": "^0.11.0",
"serve": "^14.2.1"
},
"overrides": {
"minimist": "$minimist"
}
}