forked from XeroAPI/xero-node
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.01 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
{
"name": "xero-node",
"version": "2.9.0",
"description": "Xero API Wrapper for all application types",
"main": "lib/index.js",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/XeroAPI/xero-node"
},
"scripts": {
"test": "yarn && nyc mocha"
},
"keywords": [
"xero",
"api"
],
"author": "Jordan Walsh",
"license": "MIT",
"dependencies": {
"follow-redirects": "^1.2.3",
"lodash": "^4.17.4"
},
"readmeFilename": "README.md",
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^4.3.0",
"eslint-config-airbnb-base": "^11.3.1",
"eslint-config-prettier": "^2.3.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-markdown": "^1.0.0-beta.6",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-prettier": "^2.1.2",
"mocha": "3.4.2",
"nyc": "^10.1.2",
"prettier": "^1.5.3",
"sinon": "^1.17.7",
"zombie": "^5.0.5",
"uuid": "^3.0.1"
},
"engines": {
"node": ">=6.0.0"
}
}