This repository has been archived by the owner on Apr 25, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
105 lines (105 loc) · 2.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
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
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "generator-phaser-plus",
"description": "Create Phaser Web games with ease.",
"version": "3.0.0-beta.7",
"homepage": "https://github.com/rblopes/generator-phaser-plus/tree/master/packages/generator-phaser-plus#readme",
"author": "Rafael Barbosa Lopes (https://github.com/rblopes)",
"contributors": [],
"repository": {
"type": "git",
"url": "https://github.com/rblopes/generator-phaser-plus.git"
},
"bugs": "https://github.com/rblopes/generator-phaser-plus/issues",
"keywords": [
"yeoman-generator",
"babel",
"browsersync",
"canvas",
"es2015",
"es2016",
"es2017",
"es2018",
"es6",
"es7",
"es8",
"esnext",
"game development",
"gamedev",
"games",
"gulp",
"html5",
"phaser",
"scaffold",
"webgl",
"webpack"
],
"bin": {
"phaser-plus": "./cli.js"
},
"files": [
"cli.js",
"generators/",
"lib/"
],
"scripts": {
"fix": "xo --fix",
"test": "xo && cross-env NODE_ENV=test mocha --reporter spec"
},
"preferGlobal": true,
"engines": {
"node": ">= 8.7"
},
"dependencies": {
"chalk": "^3.0.0",
"lodash.camelcase": "^4.3.0",
"lodash.isempty": "^4.4.0",
"lodash.kebabcase": "^4.1.1",
"lodash.trim": "^4.5.0",
"lodash.upperfirst": "^4.3.0",
"shelljs": "^0.8.3",
"superb": "^4.0.0",
"yargs": "^15.0.2",
"yeoman-environment": "^2.4.0",
"yeoman-generator": "^4.0.1"
},
"devDependencies": {
"cross-env": "^6.0.3",
"fs-extra": "^8.1.0",
"mocha": "^6.2.0",
"xo": "^0.25.3",
"yeoman-assert": "^3.1.1",
"yeoman-test": "^2.0.0"
},
"xo": {
"envs": [
"mocha",
"node"
],
"esnext": true,
"ignores": [
"generators/*/templates/**",
"templates/**",
"test/fixtures/**"
],
"overrides": [
{
"files": "test/*.js",
"rules": {
"promise/prefer-await-to-then": "off"
}
}
],
"rules": {
"capitalized-comments": "off",
"quotes": [
"error",
"single",
{
"allowTemplateLiterals": true
}
]
},
"space": true
},
"license": "MIT"
}