forked from jira-node/node-jira-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.86 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
{
"name": "jira-client",
"version": "6.6.0",
"description": "Wrapper for the JIRA API",
"author": "Steven Surowiec <steven.surowiec@gmail.com>",
"contributors": [
"Chris Moultrie <chris@moultrie.org>",
"Lucas Vogelsang <l@lucasvo.com>",
"Matt Smith <mtscout6+node-jira@gmail.com>",
"Anson Wayman <kanoyugoro+node-jira@gmail.com>"
],
"homepage": "http://github.com/jira-node/node-jira-client",
"repository": {
"type": "git",
"url": "http://github.com/jira-node/node-jira-client"
},
"engine": {
"node": ">=4.2.2"
},
"main": "./lib/jira.js",
"files": [
"lib",
"docs",
"LICENSE.md",
"README.md"
],
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.0.0",
"request": "^2.88.0",
"request-promise": "^4.1.1"
},
"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 && npm run docs-build",
"prepublishOnly": "npm run build && npm run docs-build",
"release": "release"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-eslint": "^10.0.1",
"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": "^5.12.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-mocha": "^5.2.1",
"mocha": "^5.2.0",
"release-script": "^1.0.1"
},
"release-script": {
"docsRepo": "git@github.com:jira-node/jira-node.github.io.git",
"docsRoot": "docs/",
"tmpDocsRepo": "tmp-docs-repo"
}
}