-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
59 lines (59 loc) · 1.05 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
{
"name": "zuorajs",
"version": "0.0.1",
"description": "Zuora REST API client for nodejs",
"engines": {
"node": ">=6.4.x"
},
"repository": {
"type": "git",
"url": "https://github.com/AirVantage/zuorajs.git"
},
"main": "zuora.js",
"scripts": {
"test": "node test/main.js"
},
"keywords": [
"zuora",
"rest",
"api",
"nodejs"
],
"author": "David Sciamma <[email protected]>",
"license": "MIT",
"dependencies": {
"bluebird": "^2.9.34",
"got": "^7.1.0",
"cookie": "^0.3.0",
"lodash": "^4.17.4",
"form-data": "^2.3.0"
},
"devDependencies": {
"eslint": "^4.8.0",
"grunt": "^0.4.5",
"grunt-release": "^0.13.0",
"prettier": "^1.6.1"
},
"eslintConfig": {
"env": {
"node": true,
"es6": true
},
"parserOptions": {
"ecmaVersion": 8
},
"extends": [
"eslint:recommended"
],
"rules": {
"linebreak-style": [
"error",
"unix"
],
"max-params": [
"warn",
3
]
}
}
}