-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.65 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": "bitbucket-changelog-generator",
"version": "1.0.5",
"description": "A changelog generator for bitbucket, using the merged pull requests and template",
"source": "src/index.js",
"main": "dist/index.js",
"bin": {
"bitbucket-changelog": "dist/index.js"
},
"type": "module",
"engines": {
"node": ">=16.14.1"
},
"scripts": {
"copy-templates": "cp ./src/template.md ./src/default-template.md dist",
"dev": "NODE_ENV=development node src/index.js",
"lint": "standard",
"build": "mkdir -p dist && npm run copy-templates && NODE_ENV=production parcel build",
"publish": "clean-publish --fields targets",
"test:integration": "NODE_ENV=development node ./tests/integration.js"
},
"repository": {
"type": "git",
"url": "https://github.com/Alejandroid17/bitbucket-changelog-generator"
},
"bugs": {
"url": "https://github.com/Alejandroid17/bitbucket-changelog-generator/issues/new?labels=bug&template=BUG.md"
},
"keywords": [
"changelog",
"pull-request",
"bitbucket",
"log",
"templates"
],
"author": "Alejandroid17",
"license": "MIT",
"dependencies": {
"dotenv": "16.0.3",
"just-merge": "3.2.0",
"node-fetch": "3.3.0",
"nunjucks": "3.2.3",
"ora": "6.1.2"
},
"devDependencies": {
"clean-publish": "4.1.1",
"mockdate": "3.0.5",
"nock": "13.3.0",
"parcel": "2.8.3",
"standard": "17.0.0"
},
"eslintConfig": {
"extends": "./node_modules/standard/eslintrc.json",
"ignorePatterns": [
"dist/*"
]
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"targets": {
"main": {
"optimize": true
}
}
}