forked from yeoman/generator-webapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.4 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
{
"name": "generator-webapp",
"version": "4.0.0-8",
"description": "Scaffold out a front-end web app",
"license": "BSD-2-Clause",
"repository": "yeoman/generator-webapp",
"author": "The Yeoman Team",
"main": "app/index.js",
"engines": {
"node": ">=6"
},
"scripts": {
"lint": "eslint .",
"test": "mocha --reporter spec --timeout 3000"
},
"files": [
"app"
],
"keywords": [
"yeoman-generator",
"web",
"app",
"front-end",
"h5bp",
"modernizr",
"jquery",
"gulp"
],
"dependencies": {
"command-exists": "^1.2.8",
"generator-jasmine": "^2.0.1",
"generator-mocha": "^2.0.4",
"mkdirp": "^0.5.1",
"yeoman-generator": "^4.0.1",
"yosay": "^2.0.2"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-prettier": "^3.1.0",
"husky": "^2.3.0",
"lint-staged": "^8.1.7",
"mocha": "^6.1.4",
"prettier": "^1.17.1",
"yeoman-assert": "^3.1.1",
"yeoman-test": "^2.0.0"
},
"prettier": {
"semi": true,
"singleQuote": true,
"trailingComma": "none",
"endOfLine": "auto"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn lint && yarn test",
"pre-publish": "yarn lint && yarn test"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
}
}