-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.09 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
{
"name": "starfield-ts",
"version": "1.0.0",
"description": "Procedural generated starfield",
"keywords": [
"starfield",
"procgen",
"typescript",
"pixi.js"
],
"scripts": {
"build": "gulp bundle && gulp copy",
"clean": "gulp clean",
"clean:all": "gulp clean:all",
"compile": "gulp compile",
"rebuild": "gulp clean && gulp bundle && gulp copy",
"serve": "gulp serve",
"test": "gulp test",
"watch": "gulp watch",
"watchRefresh": "gulp watchRefresh"
},
"author": "Yahiko <yahiko.ninja@gmail.com>",
"license": "MIT",
"devDependencies": {
"browser-sync": "^2.18.12",
"browserify": "^14.4.0",
"browserify-incremental": "^3.1.1",
"del": "^3.0.0",
"glslify": "^6.1.0",
"gulp": "^3.9.1",
"gulp-changed": "^3.1.0",
"gulp-if": "^2.0.2",
"gulp-rename": "^1.2.2",
"gulp-sourcemaps": "^2.6.0",
"gulp-tape": "^0.0.9",
"gulp-typescript": "^3.2.0",
"gulp-uglify": "^3.0.0",
"gulp-util": "^3.0.8",
"pixi.js": "^4.5.3",
"run-sequence": "^2.0.0",
"tape": "^4.7.0",
"through2": "^2.0.3",
"typescript": "^2.4.1",
"uglify-js": "^3.0.20",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"yargs": "^8.0.2"
},
"dependencies": {
"bezier-easing": "^2.0.3",
"color-ts": "^0.2.7",
"exdat": "yahiko00/dat.gui",
"fdrandom": "^2.6.1",
"geometry2d": "^0.1.8",
"pixi-filters": "^1.0.6",
"pixi-particles": "yahiko00/pixi-particles",
"pixi-typescript": "pixijs/pixi-typescript#v4.x"
},
"settings": {
"debug": true,
"tsconfig": {
"debug": "tsconfig.debug.json",
"release": "tsconfig.json"
},
"paths": {
"src": "./src/",
"srcScripts": "./src/scripts/",
"srcImages": "./src/images/",
"srcSounds": "./src/sounds/",
"srcCss": "./src/css/",
"release": "./dist/",
"debug": "./debug/",
"tgtScripts": "./",
"tgtImages": "images/",
"tgtSounds": "sounds/",
"tgtCss": "css/",
"tests": "./tests/"
},
"main": "main.js",
"bundle": "bundle.js",
"port": 8080
}
}