-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.86 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
{
"name": "generator-kata-net-core",
"version": "0.0.0",
"description": "Yeoman generator for empty C# code kata using .NET Core",
"private": "true",
"main": "index.js",
"scripts": {
"debug": "npx --node-options=--inspect-brk yo kata-net-core",
"test": "nyc --reporter=text mocha --recursive",
"test:fast": "mocha --recursive test/fast",
"test:watch": "mocha \"test/fast/**/*.js\" --watch --watch-extensions js",
"lint": "eslint .",
"lint:fix": "eslint --fix --ext .js,.jex .",
"complexity:app": "complexity-report-html app && mv .complexity-report/report.html .complexity-report/app.html",
"complexity:test": "complexity-report-html test && mv .complexity-report/report.html .complexity-report/test.html",
"complexity": "npm run complexity:app && npm run complexity:test",
"coverage": "rm -rf ./node_modules/.cache && rm -rf coverage/ && rm -rf .nyc_output/ && NODE_ENV=test LOG_LEVEL=silent nyc --reporter=lcov mocha --recursive"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wonderbird/generator-kata-net-core.git"
},
"keywords": [
"yeoman-generator",
"C#",
".NET",
"Core"
],
"author": "Stefan Boos",
"email": "kontakt@boos.systems",
"license": "MIT",
"bugs": {
"url": "https://github.com/wonderbird/generator-kata-net-core/issues"
},
"homepage": "https://github.com/wonderbird/generator-kata-net-core#readme",
"dependencies": {
"yeoman-generator": "^5.4.2"
},
"devDependencies": {
"chai": "^4.3.4",
"complexity-report-html": "0.0.3",
"eslint": "^7.32.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.1",
"mocha": "^9.1.3",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"sinon": "^12.0.1",
"sinon-chai": "^3.7.0",
"yeoman-assert": "^3.1.1",
"yeoman-environment": "^3.8.0",
"yeoman-test": "^6.2.0"
}
}