-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
47 lines (47 loc) · 1.12 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
{
"name": "jira2slack",
"version": "1.3.0",
"description": "Library to convert between JIRA markup and Slack markup",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "npm run lint && npm run unit",
"unit": "nyc --all node test.js",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"coverage": "nyc report --reporter=lcovonly",
"coverage-report": "nyc report --reporter=html && open coverage/index.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shaunburdick/jira2slack.git"
},
"keywords": [
"jira",
"slack",
"markdown"
],
"author": "Shaun Burdick <github@shaunburdick.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/shaunburdick/jira2slack/issues"
},
"homepage": "https://github.com/shaunburdick/jira2slack#readme",
"devDependencies": {
"eslint": "^9.17.0",
"eslint-config-shaunburdick": "^2.0.1",
"globals": "^15.14.0",
"nyc": "^15.1.0",
"tape": "^5.5.3"
},
"semistandard": {
"ignore": [
"coverage"
]
},
"nyc": {
"include": [
"index.js"
]
}
}