-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
97 lines (97 loc) · 1.66 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
{
"name": "generator-openfl",
"version": "2.1.0",
"description": "Generator for OpenFL ES5, ES6, TypeScript, AS3/Royale, or Haxe NPM-based projects",
"license": "MIT",
"homepage": "https://openfl.org",
"repository": "openfl/generator-openfl",
"contributors": [
"Joshua Granick",
"Other OpenFL contributors"
],
"files": [
"generators"
],
"main": "generators/index.js",
"keywords": [
"openfl",
"es5",
"es6",
"typescript",
"haxe",
"as3",
"royale",
"generator",
"template",
"yeoman-generator"
],
"devDependencies": {
"eslint": "^8.50.0",
"eslint-config-xo": "^0.43.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^14.0.1",
"yeoman-assert": "^3.1.1",
"yeoman-test": "^6.3.0"
},
"engines": {
"npm": ">= 4.0.0"
},
"dependencies": {
"yeoman-generator": "^3.2.0"
},
"jest": {
"testEnvironment": "node"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"eslintConfig": {
"extends": [
"xo"
],
"env": {
"jest": true,
"node": true
},
"rules": {
"arrow-body-style": [
2,
"always"
],
"comma-dangle": [
2,
"never"
],
"func-call-spacing": [
2,
"always"
],
"padded-blocks": [
2,
"always"
],
"space-before-function-paren": [
2,
"always"
],
"quotes": [
2,
"double"
]
},
"plugins": []
},
"scripts": {
"pretest": "eslint .",
"test": "jest"
}
}