|
@@ -1,6 +1,6 @@
|
|
|
{
|
|
{
|
|
|
"name": "@e22m4u/js-data-projector",
|
|
"name": "@e22m4u/js-data-projector",
|
|
|
- "version": "0.0.2",
|
|
|
|
|
|
|
+ "version": "0.0.1",
|
|
|
"description": "JavaScript модуль для работы с проекцией данных",
|
|
"description": "JavaScript модуль для работы с проекцией данных",
|
|
|
"author": "Mikhail Evstropov <e22m4u@yandex.ru>",
|
|
"author": "Mikhail Evstropov <e22m4u@yandex.ru>",
|
|
|
"license": "MIT",
|
|
"license": "MIT",
|
|
@@ -11,15 +11,17 @@
|
|
|
"projection",
|
|
"projection",
|
|
|
"filtering"
|
|
"filtering"
|
|
|
],
|
|
],
|
|
|
- "homepage": "https://gitrepos.ru/e22m4u/js-data-projector",
|
|
|
|
|
|
|
+ "homepage": "https://github.com/e22m4u/js-data-projector",
|
|
|
"repository": {
|
|
"repository": {
|
|
|
"type": "git",
|
|
"type": "git",
|
|
|
- "url": "git+https://gitrepos.ru/e22m4u/js-data-projector.git"
|
|
|
|
|
|
|
+ "url": "git+https://github.com/e22m4u/js-data-projector.git"
|
|
|
},
|
|
},
|
|
|
"type": "module",
|
|
"type": "module",
|
|
|
|
|
+ "types": "./src/index.d.ts",
|
|
|
"module": "./src/index.js",
|
|
"module": "./src/index.js",
|
|
|
"main": "./dist/cjs/index.cjs",
|
|
"main": "./dist/cjs/index.cjs",
|
|
|
"exports": {
|
|
"exports": {
|
|
|
|
|
+ "types": "./src/index.d.ts",
|
|
|
"import": "./src/index.js",
|
|
"import": "./src/index.js",
|
|
|
"require": "./dist/cjs/index.cjs"
|
|
"require": "./dist/cjs/index.cjs"
|
|
|
},
|
|
},
|
|
@@ -27,12 +29,12 @@
|
|
|
"node": ">=12"
|
|
"node": ">=12"
|
|
|
},
|
|
},
|
|
|
"scripts": {
|
|
"scripts": {
|
|
|
- "lint": "eslint ./src",
|
|
|
|
|
- "lint:fix": "eslint ./src --fix",
|
|
|
|
|
|
|
+ "lint": "tsc && eslint ./src",
|
|
|
|
|
+ "lint:fix": "tsc && eslint ./src --fix",
|
|
|
"format": "prettier --write \"./src/**/*.js\"",
|
|
"format": "prettier --write \"./src/**/*.js\"",
|
|
|
"test": "npm run lint && c8 --reporter=text-summary mocha --bail",
|
|
"test": "npm run lint && c8 --reporter=text-summary mocha --bail",
|
|
|
"test:coverage": "npm run lint && c8 --reporter=text mocha --bail",
|
|
"test:coverage": "npm run lint && c8 --reporter=text mocha --bail",
|
|
|
- "build:cjs": "rimraf ./dist/cjs && node build-cjs.js",
|
|
|
|
|
|
|
+ "build:cjs": "rimraf ./dist/cjs && node --no-warnings=ExperimentalWarning build-cjs.js",
|
|
|
"prepare": "husky"
|
|
"prepare": "husky"
|
|
|
},
|
|
},
|
|
|
"dependencies": {
|
|
"dependencies": {
|
|
@@ -43,19 +45,20 @@
|
|
|
"@commitlint/cli": "~20.1.0",
|
|
"@commitlint/cli": "~20.1.0",
|
|
|
"@commitlint/config-conventional": "~20.0.0",
|
|
"@commitlint/config-conventional": "~20.0.0",
|
|
|
"@eslint/js": "~9.39.1",
|
|
"@eslint/js": "~9.39.1",
|
|
|
|
|
+ "@types/mocha": "~10.0.10",
|
|
|
"c8": "~10.1.3",
|
|
"c8": "~10.1.3",
|
|
|
"chai": "~6.2.1",
|
|
"chai": "~6.2.1",
|
|
|
"esbuild": "~0.27.0",
|
|
"esbuild": "~0.27.0",
|
|
|
"eslint": "~9.39.1",
|
|
"eslint": "~9.39.1",
|
|
|
"eslint-config-prettier": "~10.1.8",
|
|
"eslint-config-prettier": "~10.1.8",
|
|
|
"eslint-plugin-chai-expect": "~3.1.0",
|
|
"eslint-plugin-chai-expect": "~3.1.0",
|
|
|
- "eslint-plugin-import": "~2.32.0",
|
|
|
|
|
"eslint-plugin-jsdoc": "~61.4.1",
|
|
"eslint-plugin-jsdoc": "~61.4.1",
|
|
|
"eslint-plugin-mocha": "~11.2.0",
|
|
"eslint-plugin-mocha": "~11.2.0",
|
|
|
"globals": "~16.5.0",
|
|
"globals": "~16.5.0",
|
|
|
"husky": "~9.1.7",
|
|
"husky": "~9.1.7",
|
|
|
"mocha": "~11.7.5",
|
|
"mocha": "~11.7.5",
|
|
|
- "prettier": "~3.7.3",
|
|
|
|
|
- "rimraf": "~6.1.2"
|
|
|
|
|
|
|
+ "prettier": "~3.7.2",
|
|
|
|
|
+ "rimraf": "~6.1.2",
|
|
|
|
|
+ "typescript": "~5.9.3"
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|