зеркало из https://github.com/openwpm/OpenWPM.git
chore(conda): unlock node version
This change was enabled by removing npm-run-all
This commit is contained in:
Родитель
19316adf11
Коммит
0a9cdb3181
|
@ -107,7 +107,7 @@ export function getInstrumentJS(eventId: string, sendMessagesToLogger) {
|
|||
};
|
||||
|
||||
return function () {
|
||||
context = this;
|
||||
context = this; // eslint-disable-line @typescript-eslint/no-this-alias
|
||||
args = arguments;
|
||||
timestamp = Date.now();
|
||||
const callNow = immediate && !timeout;
|
||||
|
|
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
|
@ -1,103 +0,0 @@
|
|||
{
|
||||
"name": "@openwpm/webext-instrumentation",
|
||||
"description": "Allows WebExtensions to track and monitor privacy-related browsing behavior",
|
||||
"author": "OpenWPM Contributors",
|
||||
"license": "GPL-3.0-or-later",
|
||||
"main": "build/main/index.js",
|
||||
"typings": "build/main/index.d.ts",
|
||||
"module": "build/module/index.js",
|
||||
"repository": "https://github.com/openwpm/OpenWPM",
|
||||
"homepage": "https://github.com/openwpm/OpenWPM/tree/master/Extension/webext-instrumentation",
|
||||
"keywords": [],
|
||||
"scripts": {
|
||||
"info": "npm-scripts-info",
|
||||
"build": "run-s clean && run-p build:*",
|
||||
"build:main": "tsc -p tsconfig.json",
|
||||
"build:module": "tsc -p tsconfig.module.json",
|
||||
"commit": "git-cz",
|
||||
"fix": "run-s fix:*",
|
||||
"fix:prettier": "prettier \"src/**/*.ts\" --write",
|
||||
"lint": "eslint \"src/**/*.ts\"",
|
||||
"fix:lint": "eslint --fix \"src/**/*.ts\"",
|
||||
"test": "run-s build test:*",
|
||||
"test:lint": "eslint --ext \"src/**/*.ts\" && prettier \"src/**/*.ts\" --list-different || exit 0",
|
||||
"watch": "run-s clean build:main && run-p \"build:main -- -w\" \"test:unit -- --watch\"",
|
||||
"cov": "run-s build test:unit cov:html && opn coverage/index.html",
|
||||
"cov:html": "nyc report --reporter=html",
|
||||
"cov:send": "nyc report --reporter=lcov > coverage.lcov && codecov",
|
||||
"cov:check": "nyc report && nyc check-coverage --lines 100 --functions 100 --branches 100",
|
||||
"doc": "run-s doc:html && opn build/docs/index.html",
|
||||
"doc:html": "typedoc src/ --out build/docs",
|
||||
"doc:json": "typedoc src/ --json build/docs/typedoc.json",
|
||||
"version-major": "git stash && run-s prepare && standard-version --release-as major",
|
||||
"version-minor": "git stash && run-s prepare && standard-version --release-as minor",
|
||||
"version-patch": "git stash && run-s prepare && standard-version --release-as patch",
|
||||
"reset": "git clean -dfx && git reset --hard && npm i",
|
||||
"clean": "trash build test",
|
||||
"all": "run-s reset test cov:check doc:html",
|
||||
"prepare": "run-s build test"
|
||||
},
|
||||
"scripts-info": {
|
||||
"info": "Display information about the package scripts",
|
||||
"build": "Clean and rebuild the project",
|
||||
"fix": "Try to automatically fix any linting problems",
|
||||
"test": "Lint the project",
|
||||
"watch": "Watch and rebuild the project on save, then rerun relevant tests",
|
||||
"cov": "Rebuild, run tests, then create and open the coverage report",
|
||||
"doc": "Generate HTML API documentation and open it in a browser",
|
||||
"doc:json": "Generate API documentation in typedoc JSON format",
|
||||
"version": "Bump package.json version, update CHANGELOG.md, tag release",
|
||||
"reset": "Delete all untracked files and reset the repo to the last commit"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=8.9"
|
||||
},
|
||||
"dependencies": { },
|
||||
"devDependencies": {
|
||||
"@types/download": "^8.0.1",
|
||||
"@types/firefox-webext-browser": "^94.0.1",
|
||||
"@typescript-eslint/eslint-plugin": "^5.22.0",
|
||||
"@typescript-eslint/parser": "^5.22.0",
|
||||
"codecov": "^3.8.3",
|
||||
"commitizen": "^4.2.4",
|
||||
"cz-conventional-changelog": "^3.3.0",
|
||||
"eslint": "^8.14.0",
|
||||
"eslint-config-prettier": "^8.5.0",
|
||||
"eslint-plugin-import": "^2.26.0",
|
||||
"eslint-plugin-jsdoc": "^39.2.9",
|
||||
"eslint-plugin-prefer-arrow": "^1.2.3",
|
||||
"eslint-plugin-unicorn": "^41.0.0",
|
||||
"gh-pages": "^3.2.3",
|
||||
"npm-run-all": "^4.1.5",
|
||||
"nyc": "^15.1.0",
|
||||
"open-cli": "^7.0.1",
|
||||
"prettier": "^2.6.2",
|
||||
"standard-version": "github:conventional-changelog/standard-version#master",
|
||||
"trash-cli": "^5.0.0",
|
||||
"typedoc": "^0.22.15",
|
||||
"typescript": "^4.6.4"
|
||||
},
|
||||
"resolutions": {
|
||||
"lodash": "^4.17.21"
|
||||
},
|
||||
"ava": {
|
||||
"failFast": true,
|
||||
"files": [
|
||||
"build/main/**/*.spec.js"
|
||||
]
|
||||
},
|
||||
"config": {
|
||||
"commitizen": {
|
||||
"path": "./node_modules/cz-conventional-changelog"
|
||||
}
|
||||
},
|
||||
"prettier": {
|
||||
"singleQuote": false,
|
||||
"trailingComma": "all"
|
||||
},
|
||||
"nyc": {
|
||||
"exclude": [
|
||||
"**/*.spec.js"
|
||||
]
|
||||
}
|
||||
}
|
|
@ -10,39 +10,39 @@ dependencies:
|
|||
- easyprocess=1.1
|
||||
- gcsfs=2022.5.0
|
||||
- geckodriver=0.30.0
|
||||
- ipython=8.3.0
|
||||
- ipython=8.4.0
|
||||
- isort=5.10.1
|
||||
- leveldb=1.23
|
||||
- multiprocess=0.70.13
|
||||
- mypy=0.960
|
||||
- nodejs=14.18.3
|
||||
- pandas=1.4.2
|
||||
- mypy=0.961
|
||||
- nodejs=17.9.0
|
||||
- pandas=1.4.3
|
||||
- pillow=9.1.1
|
||||
- pip=22.1.1
|
||||
- pip=22.1.2
|
||||
- pre-commit=2.19.0
|
||||
- psutil=5.9.1
|
||||
- pyarrow=8.0.0
|
||||
- pytest-asyncio=0.18.3
|
||||
- pytest-cov=3.0.0
|
||||
- pytest=7.1.2
|
||||
- python=3.10.4
|
||||
- python=3.10.5
|
||||
- pyvirtualdisplay=3.0
|
||||
- recommonmark=0.7.1
|
||||
- redis-py=4.3.1
|
||||
- redis-py=4.3.3
|
||||
- s3fs=2022.5.0
|
||||
- selenium=4.1.0
|
||||
- sentry-sdk=1.5.12
|
||||
- selenium=4.3.0
|
||||
- sentry-sdk=1.6.0
|
||||
- sphinx-markdown-tables=0.0.15
|
||||
- sphinx=4.5.0
|
||||
- tabulate=0.8.9
|
||||
- sphinx=5.0.2
|
||||
- tabulate=0.8.10
|
||||
- tblib=1.7.0
|
||||
- wget=1.20.3
|
||||
- pip:
|
||||
- dataclasses-json==0.5.7
|
||||
- domain-utils==0.7.1
|
||||
- jsonschema==4.5.1
|
||||
- jsonschema==4.6.0
|
||||
- plyvel==1.4.0
|
||||
- types-pyyaml==6.0.7
|
||||
- types-redis==4.2.6
|
||||
- types-tabulate==0.8.9
|
||||
- types-pyyaml==6.0.9
|
||||
- types-redis==4.3.2
|
||||
- types-tabulate==0.8.11
|
||||
name: openwpm
|
||||
|
|
|
@ -12,7 +12,7 @@ dependencies:
|
|||
- geckodriver
|
||||
- leveldb
|
||||
- multiprocess
|
||||
- nodejs==14.*.*
|
||||
- nodejs
|
||||
- pandas
|
||||
- pip
|
||||
- pillow
|
||||
|
|
Загрузка…
Ссылка в новой задаче