-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.61 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
{
"name": "@kiraind/gost-r-56042-2014",
"version": "1.0.0",
"description": "Генератор QR-кодов для оплаты банковским переводом",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest --config jestconfig.json",
"prepare": "npm run build",
"version": "git add -A src",
"postversion": "git push && git push --tags",
"docs": "typedoc --plugin typedoc-plugin-markdown --out docs src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kiraind/gost-r-56042-2014-js.git"
},
"keywords": [
"qr",
"payments"
],
"author": "kiraind",
"license": "MIT",
"bugs": {
"url": "https://github.com/kiraind/gost-r-56042-2014-js/issues"
},
"homepage": "https://github.com/kiraind/gost-r-56042-2014-js#readme",
"dependencies": {
"@types/qrcode": "^1.3.5",
"iconv-lite": "^0.6.2",
"qrcode": "^1.4.4"
},
"devDependencies": {
"@types/jest": "^26.0.15",
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.1",
"jest": "^26.6.3",
"standardx": "^7.0.0",
"ts-jest": "^26.4.3",
"typedoc": "^0.19.2",
"typedoc-plugin-markdown": "^3.0.11",
"typescript": "^4.0.5"
},
"eslintConfig": {
"rules": {
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": "error",
"no-useless-constructor": "off",
"@typescript-eslint/no-useless-constructor": "error"
}
},
"standardx": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint/eslint-plugin"
]
}
}