source: imaps-frontend/node_modules/@eslint-community/regexpp/package.json

main
Last change on this file was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago

Update repo after prototype presentation

  • Property mode set to 100644
File size: 2.7 KB
Line 
1{
2 "name": "@eslint-community/regexpp",
3 "version": "4.11.0",
4 "description": "Regular expression parser for ECMAScript.",
5 "keywords": [
6 "regexp",
7 "regular",
8 "expression",
9 "parser",
10 "validator",
11 "ast",
12 "abstract",
13 "syntax",
14 "tree",
15 "ecmascript",
16 "es2015",
17 "es2016",
18 "es2017",
19 "es2018",
20 "es2019",
21 "es2020",
22 "es2021",
23 "annexB"
24 ],
25 "homepage": "https://github.com/eslint-community/regexpp#readme",
26 "bugs": {
27 "url": "https://github.com/eslint-community/regexpp/issues"
28 },
29 "repository": {
30 "type": "git",
31 "url": "https://github.com/eslint-community/regexpp"
32 },
33 "license": "MIT",
34 "author": "Toru Nagashima",
35 "exports": {
36 ".": {
37 "types": "./index.d.ts",
38 "import": "./index.mjs",
39 "default": "./index.js"
40 },
41 "./package.json": "./package.json"
42 },
43 "main": "index",
44 "files": [
45 "index.*"
46 ],
47 "scripts": {
48 "prebuild": "npm run -s clean",
49 "build": "run-s build:*",
50 "build:tsc": "tsc --module es2015",
51 "build:rollup": "rollup -c",
52 "build:dts": "npm run -s build:tsc -- --removeComments false && dts-bundle --name @eslint-community/regexpp --main .temp/index.d.ts --out ../index.d.ts && prettier --write index.d.ts",
53 "clean": "rimraf .temp index.*",
54 "lint": "eslint . --ext .ts",
55 "test": "nyc _mocha \"test/*.ts\" --reporter dot --timeout 10000",
56 "debug": "mocha --require ts-node/register/transpile-only \"test/*.ts\" --reporter dot --timeout 10000",
57 "update:test": "ts-node scripts/update-fixtures.ts",
58 "update:unicode": "run-s update:unicode:*",
59 "update:unicode:ids": "ts-node scripts/update-unicode-ids.ts",
60 "update:unicode:props": "ts-node scripts/update-unicode-properties.ts",
61 "update:test262:extract": "ts-node -T scripts/extract-test262.ts",
62 "preversion": "npm test && npm run -s build",
63 "postversion": "git push && git push --tags",
64 "prewatch": "npm run -s clean",
65 "watch": "_mocha \"test/*.ts\" --require ts-node/register --reporter dot --timeout 10000 --watch-extensions ts --watch --growl"
66 },
67 "dependencies": {},
68 "devDependencies": {
69 "@eslint-community/eslint-plugin-mysticatea": "^15.5.1",
70 "@rollup/plugin-node-resolve": "^14.1.0",
71 "@types/eslint": "^8.44.3",
72 "@types/jsdom": "^16.2.15",
73 "@types/mocha": "^9.1.1",
74 "@types/node": "^12.20.55",
75 "dts-bundle": "^0.7.3",
76 "eslint": "^8.50.0",
77 "js-tokens": "^8.0.2",
78 "jsdom": "^19.0.0",
79 "mocha": "^9.2.2",
80 "npm-run-all": "^4.1.5",
81 "nyc": "^14.1.1",
82 "rimraf": "^3.0.2",
83 "rollup": "^2.79.1",
84 "rollup-plugin-sourcemaps": "^0.6.3",
85 "ts-node": "^10.9.1",
86 "typescript": "~5.0.2"
87 },
88 "engines": {
89 "node": "^12.0.0 || ^14.0.0 || >=16.0.0"
90 }
91}
Note: See TracBrowser for help on using the repository browser.