-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
120 lines (120 loc) · 2.62 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "generator-secjs",
"version": "1.3.1",
"description": "🧬 Generator for any NodeJS Project or Framework",
"main": "app/index.js",
"scripts": {
"test": "jest --verbose",
"test:debug": "DEBUG=* jest --verbose",
"lint:fix": "eslint \"{app,utils,tests}/**/*.js\" --fix"
},
"license": "MIT",
"author": "João Lenon",
"repository": "https://github.com/SecJS/Env.git",
"bugs": "https://github.com/SecJS/Env/issues",
"homepage": "https://github.com/SecJS/Env#readme",
"keywords": [
"secjs",
"yeoman-generator"
],
"devDependencies": {
"commitizen": "4.2.4",
"cz-conventional-changelog": "3.3.0",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-config-standard": "16.0.3",
"eslint-plugin-import": "2.24.2",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-promise": "5.1.0",
"eslint-plugin-standard": "5.0.0",
"husky": "3.0.9",
"jest": "27.1.0",
"lint-staged": "11.1.2",
"prettier": "2.3.2",
"yeoman-assert": "3.1.1",
"yeoman-environment": "3.6.0",
"yeoman-test": "6.2.0"
},
"dependencies": {
"camelcase": "6.2.0",
"chalk": "4.1.0",
"decamelize": "5.0.0",
"pluralize": "8.0.0",
"uppercamelcase": "3.0.0",
"yeoman-generator": "5.4.2",
"yosay": "2.0.2"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"*.json": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
},
"jest": {
"testEnvironment": "node"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"arrowParens": "avoid",
"endOfLine": "lf",
"semi": false,
"printWidth": 80,
"overrides": [
{
"files": "test/**/*",
"options": {
"printWidth": 120
}
}
]
},
"eslintConfig": {
"env": {
"es6": true,
"node": true
},
"extends": [
"standard",
"plugin:prettier/recommended"
],
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"plugins": [
"prettier"
],
"rules": {
"dot-notation": "off",
"camelcase": "off",
"no-undef": "off",
"no-useless-constructor": "off",
"prettier/prettier": "error"
}
},
"files": [
"app",
"utils"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}