forked from vkomulai/finnish-bank-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.6 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
{
"name": "finnish-bank-utils",
"version": "1.2.0",
"main": "./dist/finnish-bank-utils.js",
"description": "A micro Javascript library for validating, creating and formatting Finnish IBAN bank account numbers and reference numbers. Can parse payment details from Finnish virtual barcodes.",
"scripts": {
"dist": "./node_modules/.bin/babel src/finnish-bank-utils.js > dist/finnish-bank-utils.js && ./node_modules/.bin/uglifyjs dist/finnish-bank-utils.js > dist/finnish-bank-utils.min.js",
"lint": "./node_modules/.bin/eslint src/*.js test/*.js",
"test": "./node_modules/.bin/mocha --compilers js:babel-register test/finnish-bank-utils_test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/vkomulai/finnish-bank-utils.git"
},
"keywords": [
"Finnish",
"Suomalainen",
"IBAN",
"Validation",
"Viitenumero",
"Tilinumero",
"Reference number",
"Virtual barcode",
"Pankkiviidakoodi",
"Virtuaaliviivakoodi"
],
"author": "vkomulai <[email protected]>",
"contributors": [
"Sakari Tuominen"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/vkomulai/finnish-bank-utils/issues"
},
"homepage": "https://github.com/vkomulai/finnish-bank-utils",
"devDependencies": {
"babel-cli": "^6.8.0",
"babel-eslint": "^6.0.4",
"babel-plugin-transform-es2015-modules-umd": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0",
"chai": "^3.5.0",
"eslint": "^2.9.0",
"mocha": "^2.4.5",
"precommit-hook": "^3.0.0",
"uglify-js": "^2.6.2"
},
"pre-commit": [
"test"
]
}