forked from jira-node/node-jira-client
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
65 lines (65 loc) · 1.88 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
{
"name": "jira-client",
"version": "8.1.0",
"description": "Wrapper for the JIRA API",
"author": "Steven Surowiec <[email protected]>",
"contributors": [
"Chris Moultrie <[email protected]>",
"Lucas Vogelsang <[email protected]>",
"Matt Smith <[email protected]>",
"Anson Wayman <[email protected]>"
],
"homepage": "http://github.com/jira-node/node-jira-client",
"repository": {
"type": "git",
"url": "http://github.com/jira-node/node-jira-client"
},
"engine": {
"node": ">=10.0.0"
},
"main": "./lib/jira.js",
"files": [
"lib",
"docs",
"LICENSE.md",
"README.md"
],
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.6.0",
"postman-request": "^2.88.1-postman.30"
},
"scripts": {
"build": "rm -rf lib && babel src --out-dir lib",
"docs-build": "rm -rf docs && esdoc -c esdoc.json",
"lint": "eslint ./",
"test": "npm run lint && mocha --require @babel/register && npm run docs-build",
"prepublishOnly": "npm run build && npm run docs-build",
"release": "release"
},
"devDependencies": {
"@babel/cli": "^7.6.0",
"@babel/core": "^7.6.0",
"@babel/eslint-parser": "7.16.3",
"@babel/plugin-transform-runtime": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"@babel/register": "^7.6.0",
"babel-plugin-add-module-exports": "^1.0.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"esdoc": "^1.1.0",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^8.2.0",
"eslint-config-airbnb": "^19.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-mocha": "^9.0.0",
"mocha": "^9.1.3",
"release-script": "^1.0.1"
},
"release-script": {
"docsRepo": "[email protected]:jira-node/jira-node.github.io.git",
"docsRoot": "docs/",
"tmpDocsRepo": "tmp-docs-repo"
}
}