-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
60 lines (60 loc) · 1.52 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
{
"name": "leankit-client",
"description": "Node.js API client for use with LeanKit",
"keywords": [
"leankit",
"api",
"client",
"kanban"
],
"licenses": [
{
"type": "MIT",
"url": "https://github.com/LeanKit/leankit-node-client/blob/master/LICENSE"
}
],
"license": "SEE LICENSE IN https://github.com/LeanKit/leankit-node-client/blob/master/LICENSE",
"version": "2.4.0",
"homepage": "https://github.com/LeanKit/leankit-node-client/",
"bugs": {
"url": "https://github.com/LeanKit/leankit-node-client/issues",
"email": "[email protected]"
},
"author": "David Neal <[email protected]>",
"contributors": [
{
"name": "David Neal",
"email": "[email protected]",
"url": "http://reverentgeek.com"
}
],
"engines": {
"node": ">=4.0"
},
"main": "src/index.js",
"dependencies": {
"request": "^2.81.0"
},
"devDependencies": {
"chai": "^4.0.2",
"chai-as-promised": "^7.0.0",
"eslint": "^4.12.1",
"eslint-config-leankit": "^4.3.0",
"lodash": "^4.17.4",
"mocha": "^3.4.2",
"nock": "^9.0.10"
},
"scripts": {
"lint": "eslint --fix ./src",
"prepublish": "npm run lint",
"pretest": "npm run lint",
"test": "mocha -r ./spec/setup --reporter spec ./spec/*.spec.js",
"test:watch": "npm run test -- -w",
"scratch-tests": "npm run lint && node ./scratch"
},
"repository": {
"type": "git",
"url": "git://github.com/LeanKit/leankit-node-client.git"
},
"optionalDependencies": {}
}