-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
49 lines (49 loc) · 1.21 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
{
"name": "@oddhill/bankid",
"version": "1.0.0",
"description": "A client to help you connect to the BankID API.",
"main": "./lib/index.js",
"directories": {
"lib": "./lib"
},
"scripts": {
"lint": "eslint ./lib",
"test": "mocha ./test/*.test.js",
"test:watch": "mocha ./test/*.test.js -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oddhill/node-bankid.git"
},
"keywords": [
"bankid"
],
"author": "Christoffer Palm <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/oddhill/node-bankid/issues"
},
"homepage": "https://github.com/oddhill/node-bankid",
"devDependencies": {
"@types/chai": "^4.2.3",
"@types/mocha": "^5.2.7",
"@types/node": "^12.7.12",
"@types/request": "^2.48.3",
"chai": "^4.2.0",
"eslint": "^6.5.1",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"mocha": "^6.2.1",
"request": "^2.88.0",
"sinon": "^7.5.0"
},
"engines": {
"node": ">=8.0.0"
},
"peerDependencies": {
"request": "^2.88.0"
}
}