-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
64 lines (64 loc) · 1.29 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
58
59
60
61
62
63
64
{
"name": "bankgirot",
"version": "1.0.0",
"description": "Generate payment files for Bankgirot.",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "make test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/niho/bankgirot.git"
},
"keywords": [
"payments",
"banking"
],
"author": "Niklas Holmgren",
"license": "MIT",
"bugs": {
"url": "https://github.com/niho/bankgirot/issues"
},
"homepage": "https://github.com/niho/bankgirot#readme",
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/chai-as-promised": "^7.1.0",
"@types/mocha": "^5.0.0",
"@types/node": "^9.6.7",
"@types/sinon": "^5.0.2",
"@types/sprintf-js": "^1.1.2",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"istanbul": "^0.4.5",
"mocha": "^5.0.5",
"nyc": "^13.3.0",
"prettier": "^1.15.1",
"sinon": "^6.1.0",
"source-map-support": "^0.5.5",
"ts-node": "^4.0.2",
"tslint": "^5.9.1",
"typescript": "^3.0.1"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"exclude": [
"coverage",
"dist",
"test",
"**/*.d.ts"
],
"reporter": [
"html"
],
"all": true
},
"dependencies": {
"sprintf-js": "^1.1.2"
}
}