This repository has been archived by the owner on Jan 28, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathpackage.json
85 lines (85 loc) · 2.51 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
{
"name": "vue-babylonjs",
"version": "1.0.0-beta.7",
"files": [
"dist/*",
"lib/*"
],
"main": "dist/umd.js",
"module": "dist/esm.js",
"unpkg": "dist/umd.min.js",
"jsdelivr": "dist/umd.min.js",
"engines": {
"node": ">=8.9"
},
"description": "A ready-to-go 3d environment for Vue.js using Babylon.js",
"homepage": "https://github.com/Beg-in/vue-babylonjs",
"repository": "Beg-in/vue-babylonjs",
"bugs": {
"url": "https://github.com/Beg-in/vue-babylonjs/issues"
},
"author": {
"name": "Beg.in",
"email": "[email protected]",
"url": "http://beg.in"
},
"contributors": [
"Brian Jesse <[email protected]> (brianjesse.com)",
"Johnmark Beaty <[email protected]> (johnmarkbeaty.com)"
],
"license": "MIT",
"scripts": {
"b": "CONTEXT=$(pwd) npm explore begin-build -- npm run",
"start": "npm run b start:client",
"build": "rm -rf docs && npm run b build",
"dist:rollup": "NODE_OPTIONS=--max_old_space_size=8192 rollup --config",
"dist:uglify": "uglifyjs dist/umd.js -c -m -o dist/umd.min.js",
"dist": "BABEL_ENV=dist rm -rf lib dist && npm run dist:rollup && npm run dist:uglify",
"test": "BABEL_ENV=test ava src/**/test.js",
"test:watch": "BABEL_ENV=test npm run test -- -w",
"test:tap": "BABEL_ENV=test npm run test -- --tap"
},
"peerDependencies": {
"vue": "^2.2.0",
"@babylonjs/core": "^4.0.3",
"@babylonjs/loaders": "^4.0.3"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-external-helpers": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/register": "^7.4.4",
"@babel/runtime": "^7.4.5",
"@babylonjs/core": "^4.0.3",
"@babylonjs/inspector": "^4.0.3",
"@babylonjs/loaders": "^4.0.3",
"@vue/test-utils": "^1.0.0-beta.25",
"ava": "^2.0.0",
"begin-build": "^0.16.15",
"begin-project": "^0.4.3",
"cannon": "^0.6.2",
"earcut": "^2.1.3",
"eslint-plugin-vue": "^5.0.0-beta.3",
"find": "^0.2.9",
"frow": "^3.1.3",
"glslify-loader": "^2.0.0",
"jstransformer-markdown-it": "^2.1.0",
"jstransformer-pug": "^0.3.0",
"markdown-it-prism": "^2.0.2",
"oimo": "^1.0.9",
"prismjs": "^1.16.0",
"raw-loader": "^1.0.0",
"rollup": "^1.13.1",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-cleanup": "^3.0.0",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-node-resolve": "^5.0.1",
"uglify-js": "^3.6.0"
},
"ava": {
"require": [
"@babel/register"
]
}
}