-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.38 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
{
"name": "nanothrower",
"version": "2.1.2",
"description": "Model hydrogen adsorption on the surface of nanostructures based on the “Random rain” algorithm",
"main": "index.js",
"scripts": {
"postinstall": "copyfiles -f node_modules/jquery/dist/jquery.slim.min.js vendor && terser node_modules/three/build/three.module.js -c -m -o vendor/three.min.js && lessc dev/css/main.less | cleancss -O2 -o dev/css/main.css",
"build": "rollup -c && terser dev/js/rr-worker.js -c toplevel -m toplevel -o build/js/rr-worker.js && copyfiles -u 1 dev/css/main.css dev/index.html build",
"lint": "eslint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Amphiluke/nanothrower.git"
},
"keywords": [
"random rain",
"modelling",
"hydrogen",
"nanostructure",
"adsorption"
],
"author": "Amphiluke",
"license": "MIT",
"bugs": {
"url": "https://github.com/Amphiluke/nanothrower/issues"
},
"homepage": "https://amphiluke.github.io/nanothrower/",
"devDependencies": {
"@eslint/js": "^9.11.1",
"@rollup/plugin-terser": "^0.4.4",
"@stylistic/eslint-plugin-js": "^2.8.0",
"clean-css-cli": "^5.6.3",
"copyfiles": "^2.4.1",
"eslint": "^9.11.1",
"globals": "^15.9.0",
"less": "^4.2.0",
"rollup": "^4.22.0"
},
"dependencies": {
"jquery": "^3.7.1",
"normalize.css": "^8.0.1",
"three": "^0.154.0"
}
}