-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.96 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
{
"name": "@adrian.insua/release-notes-generator",
"version": "2.5.1",
"description": "Repository parser to generate release notes using your PRs",
"main": "lib/index.js",
"publishConfig": {
"access": "public"
},
"files": [
"lib/"
],
"scripts": {
"start": "ts-node ./src",
"build": "rimraf ./lib && tsc && tsc-alias && npm run package",
"package": "cpy **/*.graphql ./../lib --cwd=src --parents",
"rng": "node lib gen -v -p",
"preview": "node lib gen -v --snapshot -f '' --issue",
"lint": "eslint **/**.ts --fix",
"test": "echo \"no test specified\" && exit 0",
"prepare": "husky install",
"semantic-release": "semantic-release"
},
"author": "Adrian Insua Yañez",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^13.2.1",
"@commitlint/config-conventional": "^13.2.0",
"@semantic-release/changelog": "^6.0.0",
"@types/inquirer": "^8.1.3",
"@types/node": "16.10.4",
"@types/yargs": "^17.0.4",
"@typescript-eslint/eslint-plugin": "4.22.0",
"@typescript-eslint/parser": "4.22.0",
"cpy": "^6.0.0",
"cpy-cli": "^1.0.1",
"eslint": "^7.32.0",
"husky": "^7.0.0",
"rimraf": "^2.6.3",
"semantic-release": "^18.0.0",
"ts-node": "10.3.0",
"tsc-alias": "^1.3.10",
"tsconfig-paths": "^3.11.0",
"typescript": "^4.4.3"
},
"dependencies": {
"axios": "^0.23.0",
"child_process": "^1.0.2",
"dotenv": "10.0.0",
"graphql": "15.6.1",
"graphql-import-node": "0.0.4",
"inquirer": "^7.3.3",
"log4js": "6.3.0",
"octokit": "^1.7.0",
"yaml": "^1.10.2",
"yargs": "^17.2.1"
},
"repository": {
"type": "git",
"url": "https://github.com/adrianiy/release-notes-generator.git"
},
"bin": {
"rng": "./bin/rng.js"
}
}