-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.63 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.63 KB
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
{
"name": "generator-reactgen",
"version": "0.3.3",
"description": "Yeoman generator for React/Redux apps",
"homepage": "https://github.com/aeldar/generator-reactgen",
"repository": "git@github.com:aeldar/generator-reactgen.git",
"license": "MIT",
"author": {
"name": "Eldar Aliyev",
"email": "eldar.aliyev8@gmail.com",
"url": "https://memo.ypsilon.kz"
},
"files": ["generators"],
"main": "generators/app/index.js",
"keywords": ["react", "redux", "yeoman-generator"],
"devDependencies": {
"eslint": "^4.1.0",
"eslint-config-prettier": "^2.4.0",
"eslint-config-xo": "^0.19.0",
"eslint-plugin-prettier": "^2.2.0",
"husky": "^0.14.3",
"jest": "^22.0.4",
"jest-cli": "^22.0.4",
"lint-staged": "^6.0.0",
"nsp": "^3.1.0",
"prettier": "^1.7.0",
"yeoman-assert": "^3.1.0",
"yeoman-test": "^1.7.0"
},
"dependencies": {
"chalk": "^2.1.0",
"lodash": "^4.17.4",
"yeoman-generator": "^2.0.1",
"yosay": "^2.0.1"
},
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": [".*/templates/"]
},
"scripts": {
"lint": "eslint .",
"prepublish": "nsp check",
"pretest": "eslint .",
"precommit": "lint-staged",
"test": "jest"
},
"lint-staged": {
"*.js": ["eslint --fix", "git add"],
"*.json": ["prettier --write", "git add"]
},
"eslintConfig": {
"extends": ["xo", "prettier"],
"env": {
"jest": true,
"node": true
},
"rules": {
"prettier/prettier": [
"error",
{
"singleQuote": true,
"printWidth": 90
}
]
},
"plugins": ["prettier"]
}
}