mirror of
https://github.com/crypto-pro-web/crypto-pro-js.git
synced 2024-11-23 16:44:59 +03:00
run test only on node 16 (#38)
* run test on node 16 and LTS (18) * specify the required Node.js version * run only on node 16
This commit is contained in:
parent
aab6c56ca9
commit
319068ffdd
9
.github/workflows/test.yml
vendored
9
.github/workflows/test.yml
vendored
@ -13,7 +13,7 @@ jobs:
|
|||||||
|
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
node-version: [ lts/* ]
|
node-version: [ 16 ]
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
@ -21,6 +21,7 @@ jobs:
|
|||||||
uses: actions/setup-node@v3
|
uses: actions/setup-node@v3
|
||||||
with:
|
with:
|
||||||
node-version: ${{ matrix.node-version }}
|
node-version: ${{ matrix.node-version }}
|
||||||
|
check-latest: true
|
||||||
|
|
||||||
- name: Clean install, build, test
|
- name: Clean install, build, test
|
||||||
run: |
|
run: |
|
||||||
@ -33,10 +34,12 @@ jobs:
|
|||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
- name: Use Node.js latest
|
- name: Use Node.js 16
|
||||||
uses: actions/setup-node@v3
|
uses: actions/setup-node@v3
|
||||||
with:
|
with:
|
||||||
node-version: latest
|
node-version: 16
|
||||||
|
check-latest: true
|
||||||
|
|
||||||
- name: Clean install, lint
|
- name: Clean install, lint
|
||||||
run: |
|
run: |
|
||||||
npm ci
|
npm ci
|
||||||
|
44011
package-lock.json
generated
Normal file → Executable file
44011
package-lock.json
generated
Normal file → Executable file
File diff suppressed because it is too large
Load Diff
173
package.json
173
package.json
@ -1,87 +1,90 @@
|
|||||||
{
|
{
|
||||||
"name": "crypto-pro-js",
|
"name": "crypto-pro-js",
|
||||||
"version": "2.3.2",
|
"version": "2.3.2",
|
||||||
"description": "Асинхронный JavaScript API для работы с КриптоПРО ЭЦП Browser Plug-In. Forked from https://github.com/vgoma/crypto-pro",
|
"description": "Асинхронный JavaScript API для работы с КриптоПРО ЭЦП Browser Plug-In. Forked from https://github.com/vgoma/crypto-pro",
|
||||||
"main": "./lib/crypto-pro-js.js",
|
"main": "./lib/crypto-pro-js.js",
|
||||||
"types": "./lib/crypto-pro-js.d.ts",
|
"types": "./lib/crypto-pro-js.d.ts",
|
||||||
"files": [
|
"files": [
|
||||||
"lib/**/*",
|
"lib/**/*",
|
||||||
"dist/**/*",
|
"dist/**/*",
|
||||||
"bower.json"
|
"bower.json"
|
||||||
],
|
],
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"clean": "rimraf dist lib package coverage",
|
"clean": "rimraf dist lib package coverage",
|
||||||
"start": "cross-env TS_CONFIG=tsconfig-es5.json webpack --watch",
|
"start": "cross-env TS_CONFIG=tsconfig-es5.json webpack --watch",
|
||||||
"build:uncompressed:es5": "cross-env TS_CONFIG=tsconfig-es5.json webpack",
|
"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: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: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: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: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: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:esm": "npm run build:uncompressed:esm && npm run build:definition-header:esm",
|
||||||
"build": "npm run clean && npm run build:es5 && npm run build:esm",
|
"build": "npm run clean && npm run build:es5 && npm run build:esm",
|
||||||
"pack:clean": "cross-env rimraf %npm_package_name%-%npm_package_version%.tgz",
|
"pack:clean": "cross-env rimraf %npm_package_name%-%npm_package_version%.tgz",
|
||||||
"pack:uncompress": "cross-env tar xopf %npm_package_name%-%npm_package_version%.tgz",
|
"pack:uncompress": "cross-env tar xopf %npm_package_name%-%npm_package_version%.tgz",
|
||||||
"test": "jest --coverage",
|
"test": "jest --coverage",
|
||||||
"lint": "eslint --config .eslintrc.js --ext .ts --ext .js src",
|
"lint": "eslint --config .eslintrc.js --ext .ts --ext .js src",
|
||||||
"lint:fix": "eslint --fix --config .eslintrc.js --ext .ts --ext .js src",
|
"lint:fix": "eslint --fix --config .eslintrc.js --ext .ts --ext .js src",
|
||||||
"examples-update": "npm run examples-update:script-tag",
|
"examples-update": "npm run examples-update:script-tag",
|
||||||
"examples-update:script-tag": "npm --prefix ./examples/script-tag r crypto-pro-js && npm --prefix ./examples/script-tag i crypto-pro-js",
|
"examples-update:script-tag": "npm --prefix ./examples/script-tag r crypto-pro-js && npm --prefix ./examples/script-tag i crypto-pro-js",
|
||||||
"prepack": "npm run build",
|
"prepack": "npm run build",
|
||||||
"prepublishOnly": "npm run lint && jest && npm run build",
|
"prepublishOnly": "npm run lint && jest && npm run build",
|
||||||
"postpublish": "npm run examples-update"
|
"postpublish": "npm run examples-update"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/webmasterskaya/crypto-pro-js"
|
"url": "https://github.com/webmasterskaya/crypto-pro-js"
|
||||||
},
|
},
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Artem Vasilev",
|
"name": "Artem Vasilev",
|
||||||
"email": "kern.usr@gmail.com",
|
"email": "kern.usr@gmail.com",
|
||||||
"url": "https://github.com/kernusr"
|
"url": "https://github.com/kernusr"
|
||||||
},
|
},
|
||||||
"contributors": [
|
"contributors": [
|
||||||
{
|
{
|
||||||
"name": "Vitalii Goma",
|
"name": "Vitalii Goma",
|
||||||
"email": "vgoma@yandex.ru",
|
"email": "vgoma@yandex.ru",
|
||||||
"url": "https://github.com/vgoma"
|
"url": "https://github.com/vgoma"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "German Arutyunov",
|
"name": "German Arutyunov",
|
||||||
"email": "germanarutyunov@gmail.com",
|
"email": "germanarutyunov@gmail.com",
|
||||||
"url": "https://github.com/gaarutyunov"
|
"url": "https://github.com/gaarutyunov"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"crypto",
|
"crypto",
|
||||||
"cryptopro",
|
"cryptopro",
|
||||||
"crypto-pro",
|
"crypto-pro",
|
||||||
"crypto-pro-js",
|
"crypto-pro-js",
|
||||||
"cades",
|
"cades",
|
||||||
"КриптоПро",
|
"КриптоПро",
|
||||||
"Крипто ПРО"
|
"Крипто ПРО"
|
||||||
],
|
],
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@types/jest": "25.1.4",
|
"@types/jest": "25.1.4",
|
||||||
"@types/lodash": "4.14.149",
|
"@types/lodash": "4.14.149",
|
||||||
"@types/node": "13.9.5",
|
"@types/node": "13.9.5",
|
||||||
"@typescript-eslint/eslint-plugin": "2.25.0",
|
"@typescript-eslint/eslint-plugin": "2.25.0",
|
||||||
"@typescript-eslint/parser": "2.25.0",
|
"@typescript-eslint/parser": "2.25.0",
|
||||||
"coveralls": "3.0.11",
|
"coveralls": "3.0.11",
|
||||||
"cross-env": "^7.0.2",
|
"cross-env": "^7.0.2",
|
||||||
"eslint": "6.8.0",
|
"eslint": "6.8.0",
|
||||||
"eslint-config-prettier": "6.10.1",
|
"eslint-config-prettier": "6.10.1",
|
||||||
"eslint-plugin-prettier": "3.1.2",
|
"eslint-plugin-prettier": "3.1.2",
|
||||||
"jest": "25.2.3",
|
"jest": "25.2.3",
|
||||||
"prettier": "2.0.2",
|
"prettier": "2.0.2",
|
||||||
"rimraf": "3.0.2",
|
"rimraf": "3.0.2",
|
||||||
"sinon": "9.0.1",
|
"sinon": "9.0.1",
|
||||||
"tar": "6.1.9",
|
"tar": "6.1.9",
|
||||||
"ts-jest": "^25.5.1",
|
"ts-jest": "^25.5.1",
|
||||||
"ts-loader": "6.2.2",
|
"ts-loader": "6.2.2",
|
||||||
"typescript": "3.8.3",
|
"typescript": "3.8.3",
|
||||||
"webpack": "4.42.1",
|
"webpack": "4.42.1",
|
||||||
"webpack-cli": "3.3.11"
|
"webpack-cli": "3.3.11"
|
||||||
}
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": "~16"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user