forked from alan-wu/ZincJS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.98 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
{
"name": "zincjs",
"version": "1.11.5",
"description": "ZincJS (Web-based-Zinc-Visualisation)",
"main": "build/zinc.js",
"directories": {
"doc": "docs"
},
"files": [
"package.json",
"LICENSE",
"README.md",
"src/*",
"build/zinc.js",
"build/zinc.frontend.js",
"build/zinc.js.map",
"webpack.config.js"
],
"scripts": {
"build-bundle": "webpack --config webpack.frontend.js; webpack --config webpack.backend.js",
"build-backend": "webpack --config webpack.backend.js",
"test": "npm --prefix ./test install && npm --prefix ./test run test-ci",
"changelog": "auto-changelog -p --output CHANGELOG.md --template keepachangelog",
"jsdoc": "jsdoc -c jsdoc_conf.json",
"version": "npm run build-bundle;npm run jsdoc;npm run changelog; git add CHANGELOG.md docs",
"release:beta": "npm version prerelease --preid=beta; npm publish --tag beta",
"release:minor": "npm version minor; npm publish",
"release:patch": "npm version patch; npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alan-wu/ZincJS.git"
},
"keywords": [
"library",
"webgl",
"3d",
"zincjs"
],
"author": "Alan Wu <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/alan-wu/ZincJS/issues"
},
"homepage": "http://alan-wu.github.io/ZincJS/",
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"auto-changelog": "^2.4.0",
"babel-loader": "^9.1.3",
"babel-preset-minify": "^0.5.1",
"file-loader": "^6.2.0",
"jsdoc": "^4.0.2",
"raw-loader": "^4.0.2",
"webpack": "^5.90.3",
"webpack-cli": "^5.1.4",
"webpack-node-externals": "^3.0.0"
},
"dependencies": {
"css-element-queries": "^1.2.2",
"lodash": "^4.17.19",
"promise-polyfill": "^8.1.3",
"three": "^0.130.1",
"three-spritetext": "1.6.2",
"url-loader": "^4.1.1",
"url-polyfill": "^1.1.7",
"webworkify-webpack": "^2.1.5"
}
}