-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.15 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.15 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
{
"name": "@zelflod/number_verify",
"version": "0.2.1",
"description": "Компонент для ввода цифр номера телефона с возможной маскированной частью.",
"main": "dist/index.js",
"module": "dist/index.es.js",
"publishConfig": { "registry": "https://npm.pkg.github.com/" },
"files": [
"dist"
],
"types": "src/index.ts",
"scripts": {
"prettier": "prettier --config .prettierrc --write '{src,__{tests,mocks}__}/**/*.{ts,js,html,css}'",
"lint": "eslint --ext .js,.ts src",
"lint:fix": "eslint --ext .js,.ts src --fix",
"test": "jest",
"build": "rollup -c",
"deploy": "now -A now.json --prod",
"coverage": "npm run test -- --coverage",
"backstop:init": "docker run --rm -v $(pwd):/src backstopjs/backstopjs init",
"backstop:test": "docker run --rm -v $(pwd):/src backstopjs/backstopjs test",
"backstop:approve": "docker run --rm -v $(pwd):/src backstopjs/backstopjs reference"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zelflod/number_verify.git"
},
"keywords": [
"phone-number",
"verify",
"component"
],
"author": "Nozim Yunusov",
"license": "MIT",
"bugs": {
"url": "https://github.com/zelflod/number_verify/issues"
},
"homepage": "https://github.com/nozimy/number_verify#readme",
"devDependencies": {
"@types/jest": "^25.1.1",
"@typescript-eslint/eslint-plugin": "^2.18.0",
"@typescript-eslint/parser": "^2.18.0",
"backstopjs": "^4.4.2",
"eslint": "^6.8.0",
"eslint-plugin-jest": "^23.6.0",
"husky": "^4.2.1",
"jest": "^25.1.0",
"jest-css-modules": "^2.1.0",
"jest-html-reporter": "^2.8.0",
"lint-staged": "^10.0.7",
"now": "^16.7.3",
"prettier": "1.19.1",
"rollup": "^1.30.1",
"rollup-plugin-postcss": "^2.0.5",
"rollup-plugin-terser": "^5.2.0",
"rollup-plugin-typescript2": "^0.25.3",
"ts-jest": "^25.1.0",
"typescript": "^3.7.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{ts}": [
"npm run prettier",
"npm run --silent lint:fix",
"git add"
]
}
}