forked from billwerk/node-billwerk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.23 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
{
"name": "billwerk",
"version": "2.0.1",
"description": "Node wrapper for the billwerk API: https://developer.billwerk.io/Docs/ApiReference",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/billwerk/node-billwerk.git"
},
"license": "MIT",
"scripts": {
"prepare": "npm run build",
"lint": "eslint src",
"build": "babel src -d dist",
"test": "npm run lint"
},
"author": "Axel Dünninger <[email protected]>",
"files": [
"dist"
],
"eslintConfig": {
"extends": [
"airbnb-base"
],
"parser": "babel-eslint"
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"node": "6.12.3"
}
}
]
],
"plugins": [
"transform-class-properties"
]
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.6.1",
"eslint": "^4.15.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-import": "^2.8.0"
},
"dependencies": {
"basic-auth-header": "^1.0.1",
"node-fetch": "^2.0.0",
"qs": "^6.5.1"
}
}