forked from play-co/devkit-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.32 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
{
"name": "devkit-core",
"author": "Game Closure",
"description": "devkit engine",
"version": "3.0.2",
"repository": {
"type": "git",
"url": "http://github.com/gameclosure/devkit-core.git"
},
"dependencies": {
"archiver": "^0.14.4",
"cli-color": "^0.3.2",
"etags": "git+https://github.com/gameclosure/etags#1.0.0",
"fs-extra": "^0.18.4",
"glob": "^5.0.2",
"graceful-fs": "^3.0.2",
"image-size": "0.3.2",
"jsio": "^2.2.2",
"mime": "1.2.11",
"mkdirp": "0.5.0",
"nib": "1.0.3",
"optimist": "^0.6.1",
"printf": "0.2.0",
"slash": "^1.0.0",
"stream-from-array": "^0.1.0",
"stylus": "0.48.1",
"uglify-js": "^2.4.17",
"vinyl": "^0.4.6",
"vinyl-fs": "^1.0.0"
},
"scripts": {
"preinstall": "sh scripts/preinstall.sh"
},
"devkit": {
"buildTargets": {
"browser-mobile": "src/build/browser/",
"browser-desktop": "src/build/browser/",
"live-edit": "src/build/browser/",
"native-ios": "src/build/native/native-ios",
"native-android": "src/build/native/native-android",
"native-archive": "src/build/native/native-archive",
"chrome": "src/build/chrome",
"resources-bundle": "src/build/resources-bundle"
},
"clientPaths": {
"devkit": "src/clientapi",
"*": "src/clientapi/api/"
}
}
}