forked from jira-node/node-jira-client
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.5 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
{
"name": "truefit-jira-client",
"version": "6.0.3",
"description": "Wrapper for the JIRA API - forked by Truefit from node-jira-client",
"author": "Truefit",
"homepage": "https://github.com/TrueFit/node-jira-client",
"repository": {
"type": "git",
"url": "https://github.com/TrueFit/node-jira-client"
},
"engine": {
"node": ">=4.2.2"
},
"main": "./lib/jira.js",
"files": [
"lib",
"docs",
"LICENSE.md",
"README.md"
],
"licenses": [
{
"type": "The MIT License",
"url": "http://www.opensource.org/licenses/mit-license.php"
}
],
"dependencies": {
"babel-runtime": "^6.3.13",
"request-promise": "^3.0.0",
"babel-cli": "^6.2.0",
"babel-core": "^6.2.1",
"babel-eslint": "^6.0.2",
"babel-plugin-add-module-exports": "^0.1.1",
"babel-plugin-transform-runtime": "^6.4.3",
"babel-preset-es2015": "^6.1.18",
"babel-preset-stage-0": "^6.1.18"
},
"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",
"prepublish": "npm run build && npm run docs-build",
"release": "release"
},
"devDependencies": {
"chai": "^3.4.1",
"chai-as-promised": "^5.1.0",
"esdoc": "^0.4.3",
"esdoc-es7-plugin": "0.0.3",
"eslint": "^2.6.0",
"eslint-config-airbnb": "^7.0.0",
"eslint-plugin-mocha": "^2.0.0",
"mocha": "^2.3.4",
"release-script": "^1.0.1"
}
}