-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 852 Bytes
/
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
{
"name": "redmine-auto-issue",
"version": "1.0.0",
"description": "Tiny cli for writing multiple issues inside single md file and syncing it with [redmine](http://redmine.org/)",
"main": "lib/index.js",
"scripts": {
"start": "node .",
"start:sync": "node . --sync",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/joeberetta/redmine-auto-issue.git"
},
"keywords": [
"redmine",
"cli"
],
"author": {
"email": "[email protected]",
"name": "Joe Beretta",
"url": "https://github.com/joeberetta"
},
"license": "MIT",
"dependencies": {
"@textlint/markdown-to-ast": "^14.0.4",
"front-matter": "^4.0.2",
"superagent": "^8.1.2"
},
"devDependencies": {
"@types/superagent": "^8.1.5"
}
}