-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpackage.json
50 lines (50 loc) · 1.23 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": "generator-phaser",
"version": "1.0.4",
"description": "A Yeoman generator to generate HTML5 games with phaser.js",
"keywords": [
"yeoman-generator",
"phaser",
"es2015"
],
"homepage": "https://github.com/julien/generator-phaser",
"bugs": "https://github.com/julien/generator-phaser/issues",
"author": {
"name": "Julien Castelain",
"email": "jcastelain@gmail.com",
"url": "https://github.com/julien"
},
"repository": {
"type": "git",
"url": "git://github.com/julien/generator-phaser.git"
},
"scripts": {
"test": "mocha",
"format": "prettier generators/**/*.js test/**/*.js --write",
"lint": "eslint generators/**/*.js test/**/*.js --fix",
"precommit": "lint-staged && npm test",
"prepublishOnlyOnly": "lint-staged && npm test"
},
"lint-staged": {
"*.js": [
"npm run format",
"npm run lint",
"git add"
]
},
"dependencies": {
"chalk": "^2.3.0",
"yeoman-generator": "3.2.0"
},
"devDependencies": {
"eslint": "5.13.0",
"fs-extra": "^4.0.3",
"husky": "^0.14.3",
"lint-staged": "^6.1.1",
"mocha": "^4.1.0",
"prettier": "^1.11.1",
"yeoman-assert": "^3.1.0",
"yeoman-test": "2.0.0"
},
"license": "MIT"
}