Skip to content

Commit a31167c

Browse files
chore: sort package.json (#44)
1 parent 4c31a58 commit a31167c

File tree

1 file changed

+54
-53
lines changed

1 file changed

+54
-53
lines changed

package.json

Lines changed: 54 additions & 53 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,65 @@
22
"name": "@eslint-community/regexpp",
33
"version": "0.0.0-semantically-released",
44
"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"
1124
],
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",
1235
"exports": {
1336
".": {
1437
"import": "./index.mjs",
1538
"default": "./index.js"
1639
},
1740
"./package.json": "./package.json"
1841
},
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+
},
1964
"dependencies": {},
2065
"devDependencies": {
2166
"@eslint-community/eslint-plugin-mysticatea": "^15.3.0",
@@ -36,51 +81,7 @@
3681
"ts-node": "^10.9.1",
3782
"typescript": "~4.9.4"
3883
},
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+
}
8687
}

0 commit comments

Comments
 (0)