forked from vgoma/crypto-pro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.9 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
67
68
69
70
71
72
73
74
75
76
{
"name": "@lexfoxer/crypto-pro",
"version": "2.5.2-patched.2",
"description": "API для взаимодействия с КриптоПро",
"license": "MIT",
"author": "Vitalii Goma <[email protected]> (https://github.com/vgoma)",
"repository": {
"type": "git",
"url": "git+https://github.com/lexfoxer/crypto-pro.git"
},
"bugs": {
"url": "https://github.com/lexfoxer/crypto-pro/issues"
},
"homepage": "https://github.com/lexfoxer/crypto-pro#readme",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"exports": "./lib/index.js",
"files": [
"lib/**/*",
"dist/**/*"
],
"scripts": {
"clean": "rimraf dist lib package coverage",
"start": "cross-env TS_CONFIG=tsconfig.es5.json webpack --watch",
"build:uncompressed:es5": "cross-env TS_CONFIG=tsconfig.es5.json webpack",
"build:compressed:es5": "cross-env TS_CONFIG=tsconfig.es5.json NODE_ENV=production webpack",
"build:definition-header:es5": "cross-env TS_CONFIG=tsconfig.es5.json node definition-header.js",
"build:es5": "npm run build:uncompressed:es5 && npm run build:compressed:es5 && npm run build:definition-header:es5",
"build:uncompressed:esm": "cross-env TS_CONFIG=tsconfig.esm.json webpack",
"build:definition-header:esm": "cross-env TS_CONFIG=tsconfig.esm.json node definition-header.js",
"build:esm": "npm run build:uncompressed:esm && npm run build:definition-header:esm",
"build": "npm run clean && npm run build:es5 && npm run build:esm",
"pack:clean": "cross-env-shell rimraf lexfoxer-crypto-pro-$npm_package_version.tgz",
"pack:uncompress": "cross-env-shell tar xopf lexfoxer-crypto-pro-$npm_package_version.tgz",
"test": "jest --coverage && coveralls < coverage/lcov.info",
"lint": "eslint --config .eslintrc.js './src/**/*'",
"lint:fix": "eslint --fix --config .eslintrc.js './src/**/*'",
"prepack": "npm run build",
"postpack": "npm run pack:uncompress && npm run pack:clean && cd package && clean-package --remove scripts && rm package.json.backup",
"prepublishOnly": "npm run lint && jest && npm run build",
"postpublish": "npm run examples-update"
},
"keywords": [
"crypto",
"cryptopro",
"crypto-pro",
"cades",
"КриптоПро",
"Крипто ПРО"
],
"dependencies": {
"cadesplugin_api.js": "2.3.5"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "2.25.0",
"@typescript-eslint/parser": "2.25.0",
"clean-package": "^2.2.0",
"coveralls": "3.1.1",
"cross-env": "7.0.3",
"eslint": "6.8.0",
"eslint-config-prettier": "6.10.1",
"eslint-plugin-prettier": "3.1.2",
"jest": "25.2.3",
"patch-package": "^8.0.0",
"prettier": "3.2.5",
"rimraf": "5.0.5",
"sinon": "17.0.1",
"tar": "6.2.0",
"ts-jest": "25.2.1",
"ts-loader": "9.5.1",
"typescript": "5.3.3",
"webpack": "5.90.1",
"webpack-cli": "5.1.4"
}
}