-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 882 Bytes
/
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
{
"name": "unified-bank-utils",
"version": "0.3.1",
"description": "A unified API for looking up and validating bank account details.",
"main": "src/unified-bank-utils.js",
"scripts": {
"build:lib": "webpack --output-library BankUtils --output-library-target window",
"test": "tape tests/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fohlin/unified-bank-utils.git"
},
"author": {
"name": "Fredrik Ohlin",
"email": "[email protected]",
"url": "https://github.com/fohlin"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/fohlin/unified-bank-utils/issues"
},
"homepage": "https://github.com/fohlin/unified-bank-utils#readme",
"devDependencies": {
"eslint": "^5.16.0",
"eslint-plugin-es5": "^1.3.1",
"tape": "^4.10.1",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0"
}
}