forked from vue-gl/vue-gl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.76 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
{
"name": "aaltra-vue-gl",
"version": "0.7.5",
"description": "Vue.js components rendering 3D graphics reactively via three.js",
"keywords": [
"Vue",
"Vuejs",
"WebGL",
"three",
"threejs",
"3D",
"Graphics",
"Canvas"
],
"homepage": "https://vue-gl.github.io/vue-gl/",
"repository": {
"type": "git",
"url": "https://github.com/vue-gl/vue-gl.git"
},
"bugs": {
"url": "https://github.com/vue-gl/vue-gl/issues"
},
"license": "MIT",
"main": "dist/vue-gl.js",
"scripts": {
"lint": "eslint src test *.js && markdownlint --ignore docs/components *.md docs/**/*.md",
"test": "karma start",
"start": "rollup -c && mkdir -p docs/js && cp -r dist/* docs/js && cp node_modules/three/build/three.min.js node_modules/three/examples/fonts/helvetiker_regular.typeface.json node_modules/vue/dist/vue.min.js docs/js && for d in src/*/ ; do mkdir -p docs/components/`basename $d` && vuedoc.md ${d}vgl-*.js --output docs/components/`basename $d` --level 2 --ignore-name --ignore-computed --ignore-data ; done && bundle exec jekyll serve --source docs",
"prepare": "rollup -c && mkdir -p docs/js && cp -r dist/* docs/js && cp node_modules/three/build/three.min.js node_modules/three/examples/fonts/helvetiker_regular.typeface.json node_modules/vue/dist/vue.min.js docs/js && for d in src/*/ ; do mkdir -p docs/components/`basename $d` && vuedoc.md ${d}vgl-*.js --output docs/components/`basename $d` --level 2 --ignore-name --ignore-computed --ignore-data ; done",
"publish": "mv .gitignore .gitignore.disabled && (gh-pages --dist docs; mv .gitignore.disabled .gitignore)"
},
"dependencies": {
"three": "^0.92.0"
},
"devDependencies": {
"@vuedoc/md": "^1.1.1",
"babel-cli": "^6.26.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.6.1",
"chai": "^4.1.2",
"eslint": "^4.18.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-mocha": "^5.0.0",
"gh-pages": "^1.1.0",
"karma": "^2.0.0",
"karma-babel-preprocessor": "^7.0.0",
"karma-chai": "^0.1.0",
"karma-coverage": "^1.1.1",
"karma-js-polyfills": "^0.0.3",
"karma-mocha": "^1.3.0",
"karma-rollup-preprocessor": "^6.0.0",
"markdownlint-cli": "^0.8.0",
"mocha": "^5.0.3",
"rollup": "^0.58.0",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-babel-minify": "^4.0.0",
"rollup-plugin-istanbul": "^2.0.1",
"vue": "^2.5.13"
},
"peerDependencies": {
"vue": "^2.5.0"
},
"babel": {
"presets": [
[
"env",
{
"modules": false,
"targets": {
"browsers": [
"Explorer >= 9"
]
}
}
]
],
"plugins": [
"external-helpers"
]
}
}