forked from vasturiano/aframe-globe-component
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
112 lines (112 loc) · 3.48 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "aframe-globe-component",
"version": "1.11.0",
"description": "A 3D Globe component for A-Frame.",
"main": "index.js",
"unpkg": "dist/aframe-globe-component.min.js",
"scripts": {
"dist": "npm run dist:min && npm run dist:max",
"dist:max": "webpack",
"dist:min": "cross-env NODE_ENV=production webpack",
"lint": "semistandard -v | snazzy",
"lint:fix": "semistandard --fix",
"prepublish": "npm run dist",
"ghpages": "ghpages",
"start": "webpack-dev-server --host 0.0.0.0 --progress --colors --hot-only --inline --port 5000",
"test": "karma start ./tests/karma.conf.js",
"test:firefox": "karma start ./tests/karma.conf.js --browsers Firefox",
"test:chrome": "karma start ./tests/karma.conf.js --browsers Chrome"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vasturiano/aframe-globe-component.git"
},
"keywords": [
"aframe",
"aframe-component",
"aframe-vr",
"vr",
"webvr",
"3d",
"globe"
],
"author": {
"name": "Vasco Asturiano <[email protected]>",
"url": "http://bl.ocks.org/vasturiano"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/vasturiano/aframe-globe-component/issues"
},
"homepage": "https://github.com/vasturiano/aframe-globe-component#readme",
"files": [
"index.*",
"dist/**/*",
"examples/**/*"
],
"dependencies": {
"accessor-fn": "1",
"three": ">=0.88.0",
"three-globe": "^2.21"
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/plugin-proposal-class-properties": "^7.16.0",
"@babel/plugin-proposal-decorators": "^7.16.0",
"@babel/plugin-proposal-do-expressions": "^7.16.0",
"@babel/plugin-proposal-export-default-from": "^7.16.0",
"@babel/plugin-proposal-export-namespace-from": "^7.16.0",
"@babel/plugin-proposal-function-bind": "^7.16.0",
"@babel/plugin-proposal-function-sent": "^7.16.0",
"@babel/plugin-proposal-json-strings": "^7.16.0",
"@babel/plugin-proposal-logical-assignment-operators": "^7.16.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.16.0",
"@babel/plugin-proposal-numeric-separator": "^7.16.0",
"@babel/plugin-proposal-optional-chaining": "^7.16.0",
"@babel/plugin-proposal-pipeline-operator": "^7.16.0",
"@babel/plugin-proposal-throw-expressions": "^7.16.0",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-import-meta": "^7.10.4",
"@babel/preset-env": "^7.16.0",
"aframe": "*",
"babel-loader": "^8.2.3",
"babel-preset-minify": "^0.5.1",
"chai": "^4.3.4",
"chai-shallow-deep-equal": "^1.4.6",
"cross-env": "7.0.3",
"ghpages": "^0.0.10",
"karma": "^4.4.1",
"karma-browserify": "^4.4.2",
"karma-chai-shallow-deep-equal": "0.0.4",
"karma-chrome-launcher": "2.0.0",
"karma-env-preprocessor": "^0.1.1",
"karma-firefox-launcher": "^0.1.7",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-sinon-chai": "^2.0.2",
"mocha": "^6.2.2",
"randomcolor": "^0.6.2",
"semistandard": "^16.0.1",
"shelljs": "^0.8.4",
"shx": "^0.3.3",
"sinon": "^7.5.0",
"sinon-chai": "^3.7.0",
"snazzy": "^9.0.0",
"superagent": "^6.1.0",
"webpack": "^5.63.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.3",
"webpack-sources": "3.2.1"
},
"semistandard": {
"globals": [
"AFRAME",
"THREE"
],
"ignore": [
"examples/build.js",
"dist/**"
]
}
}