-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 4.51 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
{
"name": "generator-get-going",
"description": "Yeoman generator for Golang projects",
"version": "0.0.4",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/swellaby/generator-get-going.git"
},
"author": {
"url": "http://swellaby.com",
"name": "Swellaby",
"email": "[email protected]"
},
"contributors": [
{
"email": "[email protected]",
"name": "Caleb Cartwright",
"url": "https://github.com/calebcartwright"
}
],
"bugs": {
"url": "https://github.com/swellaby/generator-get-going/issues/new/choose"
},
"scripts": {
"build": "npm run coverage:enforce && npm run lint:build",
"clean:test": "rimraf .testresults .coverage",
"clean:test:unit": "rimraf .testresults/unit .coverage/unit",
"clean:test:component": "rimraf .testresults/component .coverage/component",
"clean:test:integration": "rimraf .testresults/integration .coverage/integration",
"clean:test:functional": "rimraf .testresults/functional .coverage/functional test/functional/.testcontext/**",
"clean:js": "rimraf {test,generators}/**/*.{js,map}",
"clean": "npm run clean:test && npm run clean:js",
"pretranspile": "npm run clean:js",
"transpile": "tsc -p tsconfig.json",
"tslint": "tslint -p tsconfig.json -c tslint.json -t stylish generators/**/*.ts test/**/*.ts",
"eslint:build": "eslint -c .eslintrc.js **/*.js",
"eslint": "npm run eslint:build",
"preeslint": "npm run transpile",
"lint": "npm run tslint && npm run eslint",
"lint:build": "npm run tslint && npm run eslint:build",
"test": "npm run test:unit",
"pretest:unit": "npm run transpile && npm run clean:test:unit",
"test:unit": "mocha --config test/unit/.mocharc.yml",
"posttest:unit": "replace-in-file --isRegex true \"/(.js)/g\" .ts .testresults/unit/sonar.xml",
"pretest:component": "npm run transpile && npm run clean:test:component",
"test:component": "mocha --config test/component/.mocharc.yml",
"pretest:integration": "npm run transpile && npm run clean:test:integration",
"test:integration": "mocha --config test/integration/.mocharc.yml",
"pretest:functional": "npm run transpile && npm run clean:test:functional",
"test:functional": "mocha --config test/functional/.mocharc.yml",
"coverage": "npm run coverage:unit",
"coverage:enforce": "npm run coverage:unit:enforce",
"coverage:open": "npm run coverage:unit:open",
"coverage:unit": "nyc --report-dir .coverage/unit --check-coverage false npm run test:unit",
"coverage:unit:enforce": "nyc --report-dir .coverage/unit npm run test:unit",
"coverage:unit:open": "npm run coverage:unit && open-cli .coverage/unit/index.html",
"coverage:component": "nyc --report-dir .coverage/component --check-coverage false npm run test:component",
"coverage:component:enforce": "nyc --report-dir .coverage/component npm run test:component",
"coverage:component:open": "npm run coverage:component && open-cli .coverage/component/index.html",
"coverage:integration": "nyc --report-dir .coverage/integration --check-coverage false npm run test:integration",
"coverage:integration:enforce": "nyc --report-dir .coverage/integration npm run test:integration",
"coverage:integration:open": "npm run coverage:integration && open-cli .coverage/integration/index.html",
"dev:reset": "npm run clean && node -e \"require('rimraf').sync('node_modules');\" && npm run dev:setup",
"dev:setup": "npm i && npm i -g yo && npm run build"
},
"devDependencies": {
"@swellaby/eslint-config": "^2.0.0",
"@swellaby/nyc-config": "^3.0.2",
"@swellaby/tslint-config": "^3.0.1",
"@types/chai": "^4.2.21",
"@types/inquirer": "^8.0.0",
"@types/mkdirp": "^1.0.2",
"@types/mocha": "^9.0.0",
"@types/node": "^16.3.2",
"@types/shelljs": "^0.8.9",
"@types/sinon": "^10.0.2",
"@types/yeoman-generator": "^5.2.1",
"@types/yeoman-test": "^4.0.2",
"@types/yosay": "^2.0.0",
"chai": "^4.3.4",
"eslint": "^8.0.0",
"husky": "4.3.8",
"mocha": "^9.0.2",
"mocha-multi-reporters": "^1.5.1",
"mocha-sonarqube-reporter": "^1.0.2",
"nyc": "^15.1.0",
"open-cli": "^7.0.0",
"replace-in-file": "^6.2.0",
"rimraf": "^3.0.2",
"shelljs": "^0.8.4",
"sinon": "^11.1.1",
"tslint": "^6.1.1",
"typescript": "^4.0.0",
"yeoman-test": "^6.2.0"
},
"dependencies": {
"mkdirp": "^1.0.4",
"tslib": "^2.3.0",
"yeoman-environment": "^3.5.1",
"yeoman-generator": "^5.4.0",
"yosay": "^2.0.2"
}
}