forked from 3dmol/3Dmol.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.22 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
{
"name": "3dmol",
"version": "1.8.0",
"description": "Object oriented Javascript molecular visualization library",
"repository": {
"type": "git",
"url": "https://github.com/dkoes/3Dmol.js.git"
},
"author": "David Koes and contributors",
"homepage": "http://3dmol.csb.pitt.edu",
"jest": {
"testRegex": [
"./*\\.test.js$",
"./*\\.test.ts$"
]
},
"devDependencies": {
"@babel/plugin-transform-typescript": "^7.16.8",
"@babel/preset-env": "^7.16.11",
"del": "^6.0.0",
"glcheck": "3dmol/glcheck#master",
"glob-parent": "^5.1.2",
"gulp": "^4.0.2",
"gulp-clean": "^0.4.0",
"gulp-cli": "^2.3.0",
"gulp-concat": "^2.6.1",
"gulp-jsdoc3": "^3.0.0",
"gulp-jshint": "^2.1.0",
"gulp-merge": "^0.1.1",
"gulp-rename": "^2.0.0",
"gulp-shell": "^0.8.0",
"gulp-terser": "^2.0.1",
"gulp-uglify": "^3.0.2",
"istanbul-combine": "^0.3.0",
"jest": "^27.5.1",
"jsdoc": "^3.6.10",
"jsdom": "^19.0.0",
"jshint": "^2.13.1"
},
"scripts": {
"build": "gulp",
"prepare": "npm run build",
"jest": "npx jest",
"types": "jsdoc -t node_modules/tsd-jsdoc/dist -r 3Dmol/. -d types",
"test": " npx jest && npm run glcheck && npm run coverage",
"glcheck": "npm run clean:glcheck && npm run generate:glcheck && npm run test:glcheck",
"test:glcheck": "npx glcheck --config ./tests/glcheck/glcheck.config.json",
"clean:glcheck": "rm -rf ./tests/glcheck/render-failures",
"generate:glcheck": "python3 ./tests/glcheck/generate_glcheck_render_tests.py",
"coverage:glcheck": "npx nyc report --reporter text --reporter html --report-dir ./tests/glcheck/coverage",
"coverage": "npm run cov:jest && npm run cov:glcheck && npm run combine",
"cov:jest": "npx jest --coverage --coverage-directory=./tests/jest/coverage",
"cov:glcheck": "npx nyc report --reporter json --report-dir ./tests/glcheck/coverage",
"combine": "istanbul report --include ./tests/**/coverage/coverage-final.json html"
},
"license": "BSD-3-Clause",
"main": "build/3Dmol-min.js",
"dependencies": {
"ini": "^2.0.0",
"jquery": "^3.6.0",
"netcdfjs": "^1.0.0",
"pako": "^2.0.4",
"upng-js": "^2.1.0",
"yargs-parser": "^20.2.9"
}
}