forked from google/model-viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.24 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.24 KB
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": "@google/model-viewer",
"version": "0.0.4",
"description": "Easily display interactive 3D models on the web and in AR!",
"repository": "https://github.com/GoogleWebComponents/model-viewer",
"bugs": {
"url": "https://github.com/GoogleWebComponents/model-viewer/issues"
},
"homepage": "https://github.com/GoogleWebComponents/model-viewer#readme",
"license": "Apache-2.0",
"contributors": [
"Jordan Santell <jsantell@google.com>",
"Chris Joel <cdata@google.com>",
"Ricardo Cabello <ricardocabello@google.com>",
"Matt Small <mbsmall@google.com>"
],
"main": "./lib/model-viewer.js",
"module": "./lib/model-viewer.js",
"files": [
"src",
"lib",
"dist/model-viewer.js",
"dist/unit-tests.js",
"test.html",
"POLYFILLS.md",
"wct.conf.json"
],
"scripts": {
"clean": "rm -rf ./lib ./dist",
"build": "tsc && rollup -c",
"prepublishOnly": "npm run build",
"test": "npm run clean && npm run build && wct --skip-plugin sauce",
"serve": "ws",
"watch": "chokidar --initial src/*.js src/**/*.js -c \"npm run build\"",
"dev": "concurrently \"npm run watch\" \"npm run serve\""
},
"keywords": [
"ar",
"gltf",
"glb",
"webar",
"webvr",
"webxr",
"arcore",
"arkit",
"webaronarcore",
"webaronarkit",
"augmented reality",
"model-viewer",
"3d"
],
"devDependencies": {
"@polymer/iron-demo-helpers": "^3.0.2",
"@polymer/paper-button": "^3.0.1",
"@webcomponents/webcomponentsjs": "^2.1.3",
"@magicleap/prismatic": "^0.17.5",
"babel-eslint": "^8.2.3",
"chai": "^4.1.2",
"chokidar-cli": "^1.2.1",
"concurrently": "^4.0.1",
"eslint": "^4.19.1",
"eslint-config-google": "^0.9.1",
"fullscreen-polyfill": "^1.0.2",
"intersection-observer": "^0.5.1",
"local-web-server": "^2.6.0",
"mocha": "^5.2.0",
"resize-observer-polyfill": "^1.5.0",
"rollup": "^0.66.0",
"rollup-plugin-cleanup": "^3.0.0-beta.1",
"rollup-plugin-node-resolve": "^3.0.0",
"typescript": "^3.1.3",
"wct-browser-legacy": "^1.0.1",
"web-component-tester": "^6.9.0"
},
"dependencies": {
"@polymer/lit-element": "^0.6.2",
"three": "^0.94.0"
},
"publishConfig": {
"access": "public"
}
}