-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.11 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.11 KB
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
{
"name": "leankit-events",
"version": "1.1.0",
"description": "Node.js client for subscribing to LeanKit board events",
"main": "src/index.js",
"engines": {
"node": ">=4.0"
},
"dependencies": {
"change-case": "^3.0.1",
"leankit-client": "^2.0.0"
},
"devDependencies": {
"chai": "^4.0.2",
"chai-as-promised": "^7.0.0",
"eslint": "^3.19.0",
"eslint-config-leankit": "^3.0.0",
"fs-jetpack": "^1.1.0",
"mocha": "^3.4.2",
"nock": "^9.0.13"
},
"scripts": {
"lint": "eslint --fix ./src",
"prepublish": "npm run test",
"pretest": "npm run lint",
"test": "mocha --reporter spec ./spec/*.spec.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/leankit/leankit-node-events.git"
},
"author": "David Neal <david@reverentgeek.com> (http://reverentgeek.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/leankit/leankit-node-events/issues"
},
"homepage": "https://github.com/leankit/leankit-node-events",
"keywords": [
"leankit",
"api",
"client",
"kanban",
"events",
"subscribe"
]
}