-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
38 lines (38 loc) · 1.03 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
{
"name": "gonebusy-nodejs-client",
"version": "0.2.0",
"description": "This is a Node JS client for communicating with the full GoneBusy API",
"main": "./lib/index.js",
"scripts": {
"lint": "eslint lib test",
"lint:fix": "npm run lint -- --fix",
"test": "npm run lint && npm run test:unit",
"test:unit": "mocha",
"test:unit:watch": "mocha --watch --recursive",
"watch": "npm run test:unit:watch"
},
"keywords": [],
"author": "[email protected]",
"repository": {
"type": "git",
"url": "https://github.com/gonebusy/gonebusy-nodejs-client"
},
"dependencies": {
"request": "^2.55.0",
"moment": "^2.17.1",
"string": "^3.1.1"
},
"devDependencies": {
"babel-eslint": "^7.1.1",
"chai": "~3.5.0",
"chai-as-promised": "^6.0.0",
"eslint": "^3.18.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"lodash": "~4.17.2",
"mocha": "~3.2.0",
"nock": "~9.0.2"
}
}