@stephen-riley/pcre
Version:
Perl compatible regular expressions for JavaScript
57 lines (56 loc) • 1.69 kB
JSON
{
"name": "@stephen-riley/pcre",
"version": "0.9.0",
"description": "Perl compatible regular expressions for JavaScript",
"main": "dist/lib/PCRE.js",
"files": [
"dist",
"wasm"
],
"scripts": {
"build": "rimraf dist && make && babel -s inline -D src -d dist",
"lightclean": "rimraf dist",
"clean": "rimraf dist coverage .nyc_output deps/build",
"lint": "eslint src test",
"prepare": "npm run build",
"prepublishOnly": "npm test",
"preversion": "npm test && npm run lint",
"test": "make && cross-env NODE_ENV=test mocha --exit --require '@babel/register' --throw-deprecation test/",
"test:coverage": "make && cross-env NODE_ENV=test nyc mocha",
"test:watch": "chokidar src test mock fixtures Makefile --initial -c 'npm t'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stephen-riley/pcre.git"
},
"keywords": [
"pcre",
"pcre2",
"perl",
"regex"
],
"author": "Stephen Riley <jstephen.riley@yahoo.com> (https://github.com/stephen-riley)",
"license": "MIT",
"bugs": {
"url": "https://github.com/stephen-riley/pcre/issues"
},
"homepage": "https://github.com/stephen-riley/pcre#readme",
"devDependencies": {
"@babel/cli": "^7.0.0-beta.53",
"@babel/core": "^7.7.7",
"@babel/node": "^7.7.7",
"@babel/preset-env": "^7.0.0-beta.53",
"@babel/register": "^7.0.0-beta.53",
"babel-eslint": "^8.2.5",
"babel-plugin-istanbul": "^4.1.6",
"chokidar-cli": "^1.2.0",
"cross-env": "^5.2.0",
"eslint": "^5.1.0",
"mocha": "^6.2.2",
"nyc": "^12.0.2",
"rimraf": "^2.7.1"
},
"dependencies": {
"why-is-node-running": "^2.1.0"
}
}