forked from TrueFit/node-jira-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.9 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
67
{
"name": "nwm-jira-client",
"version": "6.4.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": "https://github.com/TrueFit/node-jira-client"
},
"engine": {
"node": ">=4.2.2"
},
"main": "./lib/jira.js",
"files": [
"lib",
"docs",
"LICENSE.md",
"README.md",
"lib/jira.js"
],
"license": "MIT",
"dependencies": {
"babel-runtime": "^6.20.0",
"request-promise": "^4.1.1",
"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",
"prepublishOnly": "npm run build && npm run docs-build",
"release": "release"
},
"devDependencies": {
"babel-cli": "^6.2.0",
"babel-core": "^6.20.0",
"babel-eslint": "^7.1.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-runtime": "^6.4.3",
"babel-preset-es2015": "^6.1.18",
"babel-preset-stage-0": "^6.1.18",
"chai": "^3.4.1",
"chai-as-promised": "^6.0.0",
"esdoc": "^0.5.2",
"esdoc-node": "^1.0.1",
"eslint": "^3.12.1",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-mocha": "^4.8.0",
"mocha": "^3.2.0",
"release-script": "^1.0.1"
}
}