forked from steves/node-jira
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 846 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 846 Bytes
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
{
"name": "js-jira",
"version": "0.12.2",
"description": "JS based JIRA API",
"author": "Aaron Bawcom <abawcom@gmail.com>",
"contributors": [],
"homepage": "http://github.com/clearly/js-jira",
"repository": {
"type": "git",
"url": "http://github.com/clearly/js-jira.git"
},
"engine": {
"node": ">=0.4.3"
},
"main": "./lib/jira.js",
"licenses": [
{
"type": "The MIT License",
"url": "http://www.opensource.org/licenses/mit-license.php"
}
],
"dependencies": {
"oauth": "^0.9.11",
"request": "^2.79.0"
},
"scripts": {
"test": "grunt test"
},
"devDependencies": {
"grunt": "^0.4.4",
"grunt-bump": "0.0.13",
"grunt-docco": "^0.3.3",
"grunt-jasmine-node": "^0.2.1",
"coffee-script": "^1.7.1",
"grunt-jslint": "^1.1.8",
"rewire": "^2.0.0"
}
}