-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathpackage.json
72 lines (72 loc) · 1.93 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
{
"name": "generator-w-express-js",
"version": "3.0.1",
"description": "Yeoman Kickoff for ExpressJS applications",
"engines": {
"node": "14.17.0",
"npm": "6.14.13"
},
"files": [
"generators"
],
"scripts": {
"test": "jest --silent",
"eslint-check": "eslint --print-config .eslintrc.js",
"lint": "eslint --ignore-pattern 'generators/app/templates/' \"**/*.js\"",
"lint-diff": "git diff --name-only --cached --relative | grep \\\\.js$ | xargs eslint",
"lint-fix": "npm run lint -- --fix",
"precommit": "npm run lint",
"prepush": "npm test",
"outdated": "npm outdated --depth 0",
"pretest": "npm run lint",
"prestart": "npm run lint",
"lint-external": "eslint -c .eslintrc.js"
},
"repository": {
"type": "git",
"url": "https://github.com/Wolox/express-js-bootstrap.git"
},
"author": "Wolox",
"license": "MIT",
"bugs": {
"url": "https://github.com/Wolox/express-js-bootstrap/issues",
"email": "tls@wolox.com.ar"
},
"cacheDirectories": [
"node_modules"
],
"homepage": "https://github.com/Wolox/express-js-bootstrap#readme",
"dependencies": {
"camel-case": "^4.1.1",
"cfonts": "^2.4.5",
"faker": "^4.1.0",
"ora": "^4.0.3",
"terminal-link": "^2.1.1",
"yeoman-generator": "^4.13.0"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"eslint": "^6.8.0",
"eslint-config-wolox": "^4.0.0",
"eslint-config-wolox-node": "^3.0.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jest": "^23.7.0",
"eslint-plugin-prettier": "^3.1.2",
"jest": "^27.3.1",
"lodash": "^4.17.21",
"prettier": "^1.19.1",
"prettier-eslint": "^12.0.0",
"yeoman-assert": "^3.1.1",
"yeoman-test": "^2.1.0"
},
"jest": {
"testEnvironment": "node",
"testMatch": [
"**/test/**/*.spec.js?(x)"
],
"modulePathIgnorePatterns": [
"<rootDir>/generators/app/templates"
],
"clearMocks": true
}
}