-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.79 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
65
66
{
"name": "@satyam-seth/otp-field",
"version": "1.0.5",
"description": "A configurable OTP field built using TypeScript and SCSS",
"repository": {
"type": "git",
"url": "git+https://github.com/satyam-seth/otp-field.git"
},
"bugs": {
"url": "https://github.com/satyam-seth/otp-field/issues"
},
"homepage": "https://github.com/satyam-seth/otp-field#readme",
"main": "dist/js/main",
"typings": "dist/js/main",
"scripts": {
"prepare": "npm run build",
"build": "gulp",
"watch": "gulp watch",
"dev": "gulp && gulp watch",
"format": "prettier --write src/ts/**/*.ts",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"lint-scss": "sass-lint src/**/*.scss",
"test:unit": "mocha",
"test:coverage": "nyc npm run test:unit"
},
"keywords": [
"OTP",
"One Time Password",
"OTP Input",
"OTP Field",
"Verification code",
"Two-factor authentication",
"2FA",
"MFA",
"Authentication input"
],
"author": "",
"license": "ISC",
"types": "./dist/js/*.d.ts",
"devDependencies": {
"@types/chai": "^4.3.6",
"@types/mocha": "^10.0.2",
"@types/node": "^20.10.4",
"@types/sinon": "^10.0.18",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"chai": "^4.3.10",
"eslint": "^8.47.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-prettier": "^5.0.0",
"gulp": "^4.0.0",
"gulp-typescript": "^6.0.0-alpha.1",
"jsdom": "^22.1.0",
"jsdom-global": "^3.0.2",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"prettier": "^3.0.1",
"sass-lint": "^1.13.1",
"sinon": "^16.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
}
}