-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 1.74 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
{
"name": "generator-xes-bdf",
"version": "0.10.2",
"description": "Generating projects that use xes-webpack-core as base library for application configuration.",
"homepage": "",
"author": {
"name": "Paweł Kapalla",
"email": "js@xesenix.pl",
"url": "http://xesenix.pl"
},
"files": [
"generators",
"helpers",
"validators"
],
"keywords": [
"webpack",
"babel",
"typescript",
"karma",
"jasmine",
"yeoman-generator",
"react",
"inversify",
"material-ui",
"phaser",
"pixi.js"
],
"devDependencies": {
"@types/jest": "^25.1.3",
"@types/npm": "^2.0.31",
"coveralls": "^3.0.9",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-config-xo": "^0.24.2",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.2.3",
"jest": "^25.1.0",
"lint-staged": "^10.0.7",
"yeoman-assert": "^3.1.0",
"yeoman-test": "^2.1.0"
},
"engines": {
"npm": ">= 4.0.0"
},
"dependencies": {
"@types/axios": "^0.14.0",
"@types/chalk": "^2.2.0",
"@types/fs-extra": "^8.1.0",
"@types/yeoman-generator": "^3.1.4",
"axios": "^0.18.1",
"babel-eslint": "^10.0.3",
"chalk": "^3.0.0",
"editorconfig": "^0.15.3",
"fs-extra": "^8.1.0",
"yeoman-generator": "^4.5.0",
"yosay": "^2.0.1"
},
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/node_modules/",
"/templates/"
]
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"*.json": [
"git add"
]
},
"eslintConfig": {
"extends": [
"xo"
],
"env": {
"jest": true,
"node": true
}
},
"scripts": {
"pretest": "eslint .",
"precommit": "lint-staged",
"test": "jest"
},
"license": "ISC"
}