-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.64 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
{
"name": "generator-ivan-js",
"version": "1.0.0",
"description": "Create js linting, formatting, deploy using gh-pages project scaffolding",
"homepage": "https://github.com/ivan-ha/generator-ivan-js",
"repository": {
"type": "git",
"url": "git+https://github.com/ivan-ha/generator-ivan-js"
},
"main": "generators/index.js",
"author": "Ivan HA <hangolam@gmail.com>",
"license": "MIT",
"keywords": [
"yeoman-generator"
],
"files": [
"generators",
"react",
"flow",
"javascript",
"scaffold",
"ivan",
"generator"
],
"dependencies": {
"yeoman-generator": "^3.1.1"
},
"scripts": {
"bump-version": "standard-version --skip.commit=true --skip.tag=true",
"deploy": "gh-pages -d build"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged",
"pre-deploy": "yarn build"
}
},
"devDependencies": {
"@commitlint/cli": "^7.2.1",
"@commitlint/config-conventional": "^7.1.2",
"eslint": "^5.7.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-flowtype": "^3.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^21.26.1",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-ramda": "^2.5.1",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-react-redux": "^2.3.0",
"eslint-plugin-redux-saga": "^0.9.0",
"gh-pages": "^2.0.1",
"husky": "^1.1.2",
"import-sort-cli": "^5.2.0",
"import-sort-parser-babylon": "^5.2.0",
"import-sort-style-module": "^5.0.0",
"lint-staged": "^7.3.0",
"prettier": "^1.14.3",
"standard-version": "^4.4.0"
}
}