This repository has been archived by the owner on Jan 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 73
/
package.json
67 lines (67 loc) · 2.01 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
{
"name": "generator-yeogurt",
"version": "3.1.2",
"description": "A generator for creating static sites. Helps you harness the power of your favorite tools: Pug or Nunjucks, Gulp, ES6/2015, and much more!",
"keywords": [
"yeoman-generator",
"yeogurt",
"frontend",
"html5",
"pug",
"static site",
"static",
"nunjucks",
"sass",
"browsersync",
"postcss",
"browserify"
],
"homepage": "https://github.com/larsonjj/generator-yeogurt",
"bugs": "https://github.com/larsonjj/generator-yeogurt/issues",
"author": {
"name": "Jake Larson",
"email": "[email protected]",
"url": "https://github.com/larsonjj"
},
"main": "app/index.js",
"repository": {
"type": "git",
"url": "git://github.com/larsonjj/generator-yeogurt.git"
},
"scripts": {
"clean": "npx rimraf coverage test/app/temp test/subgenerators/temp",
"test": "npx nyc --reporter=text-lcov mocha ./test/app/*.test.js ./test/subgenerators/*.test.js && npm run coverage",
"localtest": "npx mocha ./test/app/*.test.js ./test/subgenerators/*.test.js -b --reporter spec",
"localtest-report": "npx nyc mocha test/app/*.test.js ./test/subgenerators/*.test.js && open ./coverage/lcov-report/index.html",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"preversion": "npm test",
"postversion": "git push && git push --tags"
},
"dependencies": {
"colors": "^0.6.2",
"command-exists": "^1.2.8",
"lodash": "^4.17.14",
"rimraf": "^2.2.8",
"yeoman-generator": "^4.0.1"
},
"devDependencies": {
"babel-eslint": "^10.0.2",
"coveralls": "^3.0.5",
"eslint": "^6.0.1",
"eslint-utils": "^2.0.0",
"handlebars": "^4.7.2",
"eslint-config-prettier": "^6.0.0",
"fixture-stdout": "^0.2.1",
"fs-extra": "^8.1.0",
"nyc": "^15.0.0",
"mocha": "^6.1.4",
"mocha-lcov-reporter": "^1.3.0",
"yeoman-test": "^2.1.0",
"yeoman-assert": "^3.1.1"
},
"engines": {
"node": ">=10.18.1",
"npm": ">=6.0.0"
},
"license": "MIT"
}