mirror of
https://github.com/kristoferssolo/solorice.git
synced 2025-10-21 20:10:34 +00:00
70 lines
1.8 KiB
JSON
70 lines
1.8 KiB
JSON
{
|
|
"name": "regexp-worker",
|
|
"version": "1.1.1",
|
|
"description": "Runs regular expressions on a background thread.",
|
|
"main": "lib/index.js",
|
|
"types": "lib/index.d.ts",
|
|
"scripts": {
|
|
"clean": "rimraf lib && rimraf coverage",
|
|
"lint": "eslint \"src/**/*.ts\"",
|
|
"build": "npm run compile",
|
|
"clean-build": "npm run clean && npm run build",
|
|
"coverage": "jest --coverage",
|
|
"prepublish": "npm run clean-build",
|
|
"prepublishOnly": "npm run test-all",
|
|
"compile": "tsc -p .",
|
|
"watch": "tsc --watch -p .",
|
|
"release": "npx standard-version",
|
|
"release-alpha": "npm release -- -p alpha",
|
|
"tsc": "tsc -p .",
|
|
"test-watch": "jest --watch",
|
|
"test-js": "cross-env TEST_JS=true jest",
|
|
"test-ts": "cross-env TEST_TS=true jest --verbose",
|
|
"test-all": "npm run test-js && npm run test-ts",
|
|
"test": "jest"
|
|
},
|
|
"engines": {
|
|
"node": ">= 12.0.0"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/streetsidesoftware/regexp-worker.git"
|
|
},
|
|
"keywords": [
|
|
"regexp",
|
|
"regular",
|
|
"expression",
|
|
"node",
|
|
"worker",
|
|
"thread"
|
|
],
|
|
"author": "Jason Dent",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/streetsidesoftware/regexp-worker/issues"
|
|
},
|
|
"files": [
|
|
"index.js",
|
|
"lib/**/*.js",
|
|
"lib/**/*.d.ts",
|
|
"!*.test.*"
|
|
],
|
|
"devDependencies": {
|
|
"@types/jest": "^27.0.1",
|
|
"@types/node": "^16.9.1",
|
|
"@typescript-eslint/eslint-plugin": "^4.31.1",
|
|
"@typescript-eslint/parser": "^4.31.1",
|
|
"conventional-changelog": "^3.1.24",
|
|
"cross-env": "^7.0.3",
|
|
"eslint": "^7.32.0",
|
|
"jest": "^27.2.0",
|
|
"jest-extended": "^0.11.5",
|
|
"lorem-ipsum": "^2.0.3",
|
|
"prettier": "^2.4.1",
|
|
"rimraf": "^3.0.2",
|
|
"ts-jest": "^27.0.5",
|
|
"typescript": "^4.4.3"
|
|
},
|
|
"homepage": "https://github.com/streetsidesoftware/regexp-worker#readme"
|
|
}
|