-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
89 lines (89 loc) · 2.48 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
{
"name": "changelog-helper",
"version": "1.0.1",
"description": "Handy browser UI to help you write changelogs",
"homepage": "https://github.com/RyanZim/changelog-helper#readme",
"bugs": {
"url": "https://github.com/RyanZim/changelog-helper/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RyanZim/changelog-helper.git"
},
"license": "ISC",
"author": "Ryan Zimmerman <opensrc@ryanzim.com>",
"type": "module",
"browser": {
"vue": "vue/dist/vue.common.js"
},
"bin": {
"changelog-helper": "./index.js"
},
"files": [
"server",
"lib/**/*.js",
"!**/*.test.js",
"app/index.html",
"app/bundle.js",
"app/bundle.css"
],
"scripts": {
"build": "run-p build:*",
"build:css": "postcss app/source.css -o app/bundle.css -u postcss-import postcss-nesting",
"build:js": "rollup -c",
"changelog": "./index.js",
"eslint": "eslint . --ignore-path .gitignore",
"format": "npm run eslint -- --fix && npm run prettier -- --write && sort-package-json",
"prepare": "npm run build",
"prettier": "prettier \"**/*.{js,css,md,html}\" --ignore-path .gitignore",
"test": "npm run eslint && npm run prettier -- --list-different && ava",
"watch": "run-p watch:*",
"watch:css": "onchange -i app/source.css -- npm run build:css",
"watch:js": "rollup -c -w"
},
"prettier": {
"singleQuote": true
},
"dependencies": {
"body-parser": "^1.18.3",
"express": "^4.16.3",
"github-url-from-git": "^1.5.0",
"open": "^9.1.0",
"read-pkg-up": "^10.0.0",
"serve-static": "^1.13.2",
"time-stamp": "^2.0.1"
},
"devDependencies": {
"@primer/css": "^21.0.0",
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-replace": "^5.0.2",
"ava": "^5.2.0",
"eslint": "^8.18.0",
"eslint-config-problems": "^8.0.0",
"marked": "^5.0.0",
"npm-run-all": "^4.1.3",
"onchange": "^7.0.0",
"postcss-cli": "^11.0.0",
"postcss-import": "^15.1.0",
"postcss-nesting": "^12.0.0",
"prettier": "^3.0.0",
"primer-alerts": "^2.0.0",
"primer-base": "^2.0.0",
"primer-buttons": "^3.0.0",
"primer-forms": "^3.0.0",
"primer-markdown": "^4.0.0",
"rollup": "^3.20.2",
"semver": "^7.0.0",
"sort-package-json": "^2.4.1",
"vue": "^3.2.47"
},
"renovate": {
"extends": [
"config:base",
":preserveSemverRanges",
":maintainLockFilesMonthly",
":label(deps)"
]
}
}