forked from playcanvas/engine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.23 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.23 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
{
"name": "playcanvas",
"version": "0.223.0",
"author": "PlayCanvas <[email protected]>",
"homepage": "https://playcanvas.com",
"description": "PlayCanvas WebGL game engine",
"keywords": [
"playcanvas",
"game engine",
"webgl",
"webgl2",
"3d"
],
"license": "MIT",
"main": "build/output/playcanvas-latest.js",
"bugs": {
"url": "https://github.com/playcanvas/engine/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/playcanvas/engine.git"
},
"optionalDependencies": {
"jsdom": "^11.5.1"
},
"devDependencies": {
"fs-extra": "^3.0.1",
"google-closure-compiler": "^20180204.0.0",
"preprocessor": "^1.4.0",
"uglify-js": "^3.3.16"
},
"scripts": {
"build": "cd build && node build.js",
"closure": "java -jar node_modules/google-closure-compiler/compiler.jar --compilation_level=SIMPLE --warning_level=VERBOSE --jscomp_off=checkTypes --externs build/externs.js --language_in=ECMASCRIPT5_STRICT --js build/output/playcanvas-latest.js --js_output_file build/output/playcanvas.min.js",
"uglify": "uglifyjs build/output/playcanvas-latest.js --compress --mangle --output build/output/playcanvas.min.js"
},
"engines": {
"node": ">= 0.6.12"
}
}