-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.04 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
{
"name": "vaporyjs-icap",
"namespace": "vaporyjs",
"version": "0.3.1",
"description": "Utilities for handling ICAP (Vapory in IBAN) encoding",
"main": "index.js",
"scripts": {
"coverage": "istanbul cover _mocha",
"coveralls": "npm run coverage && coveralls <coverage/lcov.info",
"lint": "standard",
"prepublish": "npm run lint && npm run test",
"test": "istanbul test mocha -- --reporter spec"
},
"repository": {
"type": "git",
"url": "https://github.com/vaporyjs/vaporyjs-icap.git"
},
"keywords": [
"vapory",
"utilties"
],
"author": "Alex Beregszaszi <alex@rtfs.hu>",
"license": "MIT",
"bugs": {
"url": "https://github.com/vaporyjs/vaporyjs-icap/issues"
},
"homepage": "https://github.com/vaporyjs/vaporyjs-icap",
"dependencies": {
"base-x": "^1.0.2",
"convert-hex": "^0.1.0"
},
"devDependencies": {
"coveralls": "^2.11.4",
"istanbul": "^0.4.1",
"mocha": "^2.3.4",
"standard": "^5.4.1"
},
"standard": {
"globals": [
"describe",
"it"
]
}
}