forked from maxnowack/node-billwerk
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.14 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
{
"name": "billwerk",
"version": "2.1.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": {
"parser": "babel-eslint"
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"node": "6.12.3"
}
}
]
],
"plugins": [
"transform-class-properties"
]
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^10.1.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.7.0",
"eslint": "^7.3.1",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.22.0"
},
"dependencies": {
"basic-auth-header": "^1.0.1",
"node-fetch": "^2.6.0",
"qs": "^6.9.4"
}
}