-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.16 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
{
"name": "test-phaser",
"version": "1.0.0",
"description": "",
"main": "dist/game.js",
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"phaser": "^3.54.0"
},
"devDependencies": {
"@babel/core": "*",
"@babel/preset-env": "*",
"@babel/register": "*",
"@babel/cli": "*",
"@babel/eslint-parser": "*",
"babel-loader": "*",
"babelify": "*",
"browser-sync": "*",
"browserify": "*",
"buffer": "*",
"del": "*",
"eslint": "*",
"eslint-config-google": "*",
"eslint-config-standard": "*",
"eslint-plugin-import": "*",
"eslint-plugin-jsx-a11y": "*",
"eslint-plugin-promise": "*",
"gulp": "*",
"gulp-babel": "*",
"gulp-eslint": "*",
"gulp-plumber": "*",
"gulp-uglify": "*",
"install-peerdeps": "*",
"source": "*",
"vinyl-buffer": "*",
"vinyl-source-stream": "*"
},
"babel": {
"presets": [
[
"@babel/env",
{
"targets": {
"browsers": [
">0.25%",
"not ie 11",
"not op_mini all"
]
},
"modules": false
}
]
]
}
}