-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 1.81 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
{
"name": "generator-cxcloud",
"version": "0.6.3",
"description": "A generator for CXCloud projects",
"homepage": "https://docs.cxcloud.com",
"author": {
"name": "Sallar Kaboli",
"email": "[email protected]"
},
"files": ["generators"],
"main": "generators/app/index.js",
"keywords": ["", "yeoman-generator"],
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"eslint-config-xo": "^0.20.1",
"eslint-plugin-prettier": "^2.6.0",
"husky": "^0.14.3",
"jest": "^25.0.0",
"lint-staged": "^6.1.1",
"nsp": "^2.8.0",
"prettier": "^1.11.1",
"yeoman-assert": "^3.1.1",
"yeoman-test": "^1.9.1"
},
"engines": {
"npm": ">= 4.0.0"
},
"dependencies": {
"chalk": "^2.1.0",
"download-git-repo": "^1.1.0",
"fs-extra": "^7.0.1",
"generator-git-init": "^1.1.3",
"yeoman-generator": "^2.0.1",
"yosay": "^2.0.1"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/generators/app/templates/"
],
"modulePathIgnorePatterns": ["<rootDir>/generators/app/templates/"]
},
"scripts": {
"pretest": "eslint .",
"precommit": "lint-staged",
"test": "jest"
},
"lint-staged": {
"linters": {
"*.js": ["eslint --fix", "git add"],
"*.json": ["prettier --write", "git add"]
},
"ignore": ["**/generators/app/templates/**/*"]
},
"eslintConfig": {
"extends": ["xo", "prettier"],
"env": {
"jest": true,
"node": true
},
"rules": {
"prettier/prettier": [
"error",
{
"tabWidth": 2,
"singleQuote": true,
"printWidth": 80
}
]
},
"plugins": ["prettier"]
},
"repository": "cxcloud/generator-cxcloud",
"license": "MIT"
}