-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
54 lines (54 loc) · 1.42 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
{
"name": "jira-issue-key-parser",
"version": "0.0.12",
"description": "A parser for Jira issue keys.",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"format": "npx prettier --write .",
"test": "jest",
"test:watch": "jest --watchAll"
},
"keywords": [
"parser",
"nodejs",
"typescript"
],
"author": "Rachelle Rathbone",
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/preset-env": "^7.14.2",
"@types/jest": "^26.0.23",
"@types/node": "^15.6.1",
"@typescript-eslint/parser": "^4.24.0",
"babel-jest": "^26.6.3",
"eslint": "latest",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.23.3",
"jest": "^26.6.3",
"prettier": "2.3.0",
"ts-jest": "^26.5.6",
"ts-node": "^10.0.0",
"typescript": "^4.2.4"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rachellerathbone/jira-issue-key-parser.git"
},
"bugs": {
"url": "https://github.com/rachellerathbone/jira-issue-key-parser/issues"
},
"dependencies": {
},
"homepage": "https://github.com/rachellerathbone/jira-issue-key-parser#readme",
"license": "ISC"
}