-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.38 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.38 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "@twofactor/sdk",
"version": "1.2.0",
"description": "A simple NodeJS wrapper around the 2Factor API.",
"main": "lib/index.js",
"directories": {
"lib": "lib"
},
"files": [
"/lib"
],
"scripts": {
"test": "$(./__tests__/scripts/bootstrap.js) | tap-dot",
"dev": "nodemon --exec $(./__tests__/scripts/bootstrap.js)",
"lint": "xo --cwd=./lib && xo --cwd=./__tests__",
"report-coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov -t a560f117-ba73-4251-bf8a-bf2bbdb58bbe"
},
"repository": {
"type": "git",
"url": "git+https://github.com/labsvisual/twofactor-sdk.git"
},
"keywords": [
"two",
"factor",
"otp",
"authentication",
"india",
"number",
"phone"
],
"author": "Shreyansh Pandey",
"license": "MIT",
"bugs": {
"url": "https://github.com/labsvisual/twofactor-sdk/issues"
},
"homepage": "https://github.com/labsvisual/twofactor-sdk#readme",
"devDependencies": {
"codecov": "^3.1.0",
"nock": "^10.0.4",
"nodemon": "^1.18.8",
"nyc": "^13.1.0",
"tap-dot": "^2.0.0",
"tape": "^4.9.1",
"xo": "^0.23.0"
},
"optionalDependencies": {
"@babel/core": "^7.2.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.2.0",
"@babel/register": "^7.0.0"
},
"nyc": {
"exclude": [
"lib/index.js",
"**/bootstrap.js",
"__tests__"
]
},
"xo": {
"esnext": true,
"semicolon": true,
"space": 4,
"rules": {
"space-in-parens": [
"error",
"always"
],
"padded-blocks": [
"error",
"always"
],
"array-bracket-spacing": [
"error",
"always"
],
"object-curly-spacing": [
"error",
"always"
],
"template-curly-spacing": [
"error",
"always"
],
"computed-property-spacing": [
"error",
"always"
]
}
},
"dependencies": {
"request": "^2.88.0",
"request-promise-native": "^1.0.5"
}
}