-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
42 lines (42 loc) · 981 Bytes
/
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
{
"name": "node-redmine",
"version": "0.2.2",
"description": "node-redmine is a nodejs library which supports 100% features of Redmine's REST API.",
"main": "lib/redmine.js",
"directories": {
"doc": "doc",
"example": "example",
"test": "test"
},
"scripts": {
"test": "grunt serve"
},
"keywords": [
"Redmine",
"nodejs",
"REST API"
],
"repository": {
"type": "git",
"url": "https://github.com/zanran/node-redmine.git"
},
"author": "wayne@zanran.me",
"license": "GPL-3.0",
"dependencies": {
"debug": "^2.2.0",
"request": "^2.75.0"
},
"devDependencies": {
"grunt": "^1.0.1",
"grunt-contrib-jshint": "^1.0.0",
"grunt-mocha-cli": "^2.1.0",
"grunt-mocha-istanbul": "^4.0.2",
"grunt-mocha-test": "^0.12.7",
"istanbul": "^0.4.3",
"jshint-stylish": "^2.2.0",
"load-grunt-configs": "^1.0.0",
"load-grunt-tasks": "^3.5.0",
"mocha": "^2.4.5",
"time-grunt": "^1.3.0"
}
}