|
2 | 2 | "name": "@eslint-community/regexpp",
|
3 | 3 | "version": "0.0.0-semantically-released",
|
4 | 4 | "description": "Regular expression parser for ECMAScript.",
|
5 |
| - "engines": { |
6 |
| - "node": "^12.0.0 || ^14.0.0 || ^16.0.0 || >=18.0.0" |
7 |
| - }, |
8 |
| - "main": "index", |
9 |
| - "files": [ |
10 |
| - "index.*" |
| 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" |
11 | 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", |
12 | 35 | "exports": {
|
13 | 36 | ".": {
|
14 | 37 | "import": "./index.mjs",
|
15 | 38 | "default": "./index.js"
|
16 | 39 | },
|
17 | 40 | "./package.json": "./package.json"
|
18 | 41 | },
|
| 42 | + "main": "index", |
| 43 | + "files": [ |
| 44 | + "index.*" |
| 45 | + ], |
| 46 | + "scripts": { |
| 47 | + "prebuild": "npm run -s clean", |
| 48 | + "build": "run-s build:*", |
| 49 | + "build:tsc": "tsc --module es2015", |
| 50 | + "build:rollup": "rollup -c", |
| 51 | + "build:dts": "dts-bundle --name @eslint-community/regexpp --main .temp/index.d.ts --out ../index.d.ts", |
| 52 | + "clean": "rimraf .temp index.*", |
| 53 | + "lint": "eslint . --ext .ts", |
| 54 | + "test": "nyc _mocha \"test/*.ts\" --reporter dot --timeout 10000", |
| 55 | + "update:test": "ts-node scripts/update-fixtures.ts", |
| 56 | + "update:unicode": "run-s update:unicode:*", |
| 57 | + "update:unicode:ids": "ts-node scripts/update-unicode-ids.ts", |
| 58 | + "update:unicode:props": "ts-node scripts/update-unicode-properties.ts", |
| 59 | + "preversion": "npm test && npm run -s build", |
| 60 | + "postversion": "git push && git push --tags", |
| 61 | + "prewatch": "npm run -s clean", |
| 62 | + "watch": "_mocha \"test/*.ts\" --require ts-node/register --reporter dot --timeout 10000 --watch-extensions ts --watch --growl" |
| 63 | + }, |
19 | 64 | "dependencies": {},
|
20 | 65 | "devDependencies": {
|
21 | 66 | "@eslint-community/eslint-plugin-mysticatea": "^15.3.0",
|
|
36 | 81 | "ts-node": "^10.9.1",
|
37 | 82 | "typescript": "~4.9.4"
|
38 | 83 | },
|
39 |
| - "scripts": { |
40 |
| - "prebuild": "npm run -s clean", |
41 |
| - "build": "run-s build:*", |
42 |
| - "build:tsc": "tsc --module es2015", |
43 |
| - "build:rollup": "rollup -c", |
44 |
| - "build:dts": "dts-bundle --name @eslint-community/regexpp --main .temp/index.d.ts --out ../index.d.ts", |
45 |
| - "clean": "rimraf .temp index.*", |
46 |
| - "lint": "eslint . --ext .ts", |
47 |
| - "test": "nyc _mocha \"test/*.ts\" --reporter dot --timeout 10000", |
48 |
| - "update:test": "ts-node scripts/update-fixtures.ts", |
49 |
| - "update:unicode": "run-s update:unicode:*", |
50 |
| - "update:unicode:ids": "ts-node scripts/update-unicode-ids.ts", |
51 |
| - "update:unicode:props": "ts-node scripts/update-unicode-properties.ts", |
52 |
| - "preversion": "npm test && npm run -s build", |
53 |
| - "postversion": "git push && git push --tags", |
54 |
| - "prewatch": "npm run -s clean", |
55 |
| - "watch": "_mocha \"test/*.ts\" --require ts-node/register --reporter dot --timeout 10000 --watch-extensions ts --watch --growl" |
56 |
| - }, |
57 |
| - "repository": { |
58 |
| - "type": "git", |
59 |
| - "url": "https://github.com/eslint-community/regexpp" |
60 |
| - }, |
61 |
| - "keywords": [ |
62 |
| - "regexp", |
63 |
| - "regular", |
64 |
| - "expression", |
65 |
| - "parser", |
66 |
| - "validator", |
67 |
| - "ast", |
68 |
| - "abstract", |
69 |
| - "syntax", |
70 |
| - "tree", |
71 |
| - "ecmascript", |
72 |
| - "es2015", |
73 |
| - "es2016", |
74 |
| - "es2017", |
75 |
| - "es2018", |
76 |
| - "es2019", |
77 |
| - "es2020", |
78 |
| - "annexB" |
79 |
| - ], |
80 |
| - "author": "Toru Nagashima", |
81 |
| - "license": "MIT", |
82 |
| - "bugs": { |
83 |
| - "url": "https://github.com/eslint-community/regexpp/issues" |
84 |
| - }, |
85 |
| - "homepage": "https://github.com/eslint-community/regexpp#readme" |
| 84 | + "engines": { |
| 85 | + "node": "^12.0.0 || ^14.0.0 || ^16.0.0 || >=18.0.0" |
| 86 | + } |
86 | 87 | }
|
0 commit comments