-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
108 lines (108 loc) · 3.33 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
{
"name": "aframe-loader-3dtiles-component",
"version": "1.0.6",
"description": "A component for displaying OGC 3D Tiles.",
"main": "index.js",
"unpkg": "dist/aframe-loader-3dtiles-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",
"start": "webpack serve --progress",
"test": "karma start --single-run --browsers ChromeHeadlessNoSandbox ./tests/karma.conf.js"
},
"precommit": [
"lint"
],
"repository": {
"type": "git",
"url": "git+https://github.com/nytimes/aframe-loader-3dtiles-component.git"
},
"keywords": [
"aframe",
"aframe-component",
"aframe-vr",
"vr",
"webvr",
"webxr",
"3dtiles"
],
"author": "NYTimes R&D",
"license": "MIT",
"bugs": {
"url": "https://github.com/nytimes/aframe-loader-3dtiles-component/issues"
},
"homepage": "https://github.com/nytimes/aframe-loader-3dtiles-component#readme",
"dependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.3",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-proposal-do-expressions": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-bind": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-logical-assignment-operators": "^7.0.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
"@babel/plugin-proposal-pipeline-operator": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"aframe": "^1.5.0",
"babel-loader": "^8.0.5",
"babel-preset-minify": "^0.5.0",
"chai": "^4.3.6",
"chai-shallow-deep-equal": "^1.4.0",
"cross-env": "4.0.0",
"karma": "^6.4.0",
"karma-chai-shallow-deep-equal": "0.0.4",
"karma-chrome-launcher": "^3.2.0",
"karma-env-preprocessor": "^0.1.1",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-sinon-chai": "^2.0.2",
"mocha": "^9.1.3",
"randomcolor": "^0.4.4",
"semistandard": "^16.0.1",
"shelljs": "^0.8.5",
"shx": "^0.2.2",
"sinon": "<12.0.0",
"sinon-chai": "^3.7.0",
"snazzy": "^5.0.0",
"superagent": "^3.8.2",
"three": "^0.160.1",
"three-loader-3dtiles": "^1.2.1",
"webpack": "^5.64.1",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^4.5.0"
},
"semistandard": {
"globals": [
"AFRAME",
"THREE"
],
"ignore": [
"examples/build.js",
"dist/**"
]
},
"devDependencies": {
"@babel/preset-env": "^7.16.0",
"acorn": "^8.5.0",
"json-schema": ">=0.4.0",
"karma-webpack": "^5.0.0",
"pre-commit": "^1.2.2",
"puppeteer": "^22.6.1",
"qs": ">=6.0.4",
"three": "^0.160.1",
"trim-newlines": ">=3.0.1",
"xmldom": "github:xmldom/xmldom#0.7.0"
}
}