forked from itamayo/three
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.54 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.54 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
83
84
85
86
87
88
89
90
91
92
93
{
"_from": "three@^0.87.1",
"_id": "three@0.87.1",
"_inBundle": false,
"_integrity": "sha1-Rmo07cRUNFnO2bnX0na2Uhb+K6g=",
"_location": "/three",
"_phantomChildren": {},
"_requested": {
"type": "range",
"registry": true,
"raw": "three@^0.87.1",
"name": "three",
"escapedName": "three",
"rawSpec": "^0.87.1",
"saveSpec": null,
"fetchSpec": "^0.87.1"
},
"_requiredBy": [
"/"
],
"_resolved": "https://registry.npmjs.org/three/-/three-0.90.tgz",
"_shasum": "466a34edc4543459ced9b9d7d276b65216fe2ba8",
"_spec": "three@^0.87.1",
"_where": "/home/VICOMTECH/itamayo/projects/v-drive/cloudlsva_based",
"author": {
"name": "mrdoob"
},
"bugs": {
"url": "https://github.com/mrdoob/three.js/issues"
},
"bundleDependencies": false,
"deprecated": false,
"description": "JavaScript 3D library",
"devDependencies": {
"electron": "^1.6.1",
"eslint": "^4.1.1",
"eslint-config-mdcs": "^4.2.2",
"google-closure-compiler": "^20170521.0.0",
"qunitjs": "^2.1.1",
"rollup": "^0.43.0",
"rollup-plugin-json": "^2.3.0",
"rollup-watch": "^4.0.0",
"uglify-js": "^3.0.23"
},
"directories": {
"doc": "docs",
"example": "examples",
"test": "test"
},
"eslintConfig": {
"extends": "mdcs"
},
"files": [
"package.json",
"bower.json",
"LICENSE",
"README.md",
"build/three.js",
"build/three.min.js",
"build/three.module.js",
"src",
"examples/js",
"examples/fonts"
],
"homepage": "http://threejs.org/",
"jsnext:main": "build/three.module.js",
"keywords": [
"three",
"three.js",
"3d",
"webgl"
],
"license": "MIT",
"main": "build/three.js",
"module": "build/three.module.js",
"name": "three",
"repository": {
"type": "git",
"url": "git+https://github.com/mrdoob/three.js.git"
},
"scripts": {
"build": "rollup -c",
"build-closure": "rollup -c && java -jar node_modules/google-closure-compiler/compiler.jar --warning_level=VERBOSE --jscomp_off=globalThis --jscomp_off=checkTypes --externs utils/build/externs.js --language_in=ECMASCRIPT5_STRICT --js build/three.js --js_output_file build/three.min.js",
"build-test": "rollup -c test/rollup.unit.config.js",
"build-uglify": "rollup -c && uglifyjs build/three.js -cm --preamble \"// threejs.org/license\" > build/three.min.js",
"dev": "rollup -c -w -m inline",
"editor": "electron ./editor/main.js",
"lint": "eslint src",
"test": "rollup -c test/rollup.unit.config.js -w"
},
"version": "0.87.1",
"dependencies": {}
}