forked from meriyah/meriyah
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
122 lines (122 loc) · 3.54 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "meriyah",
"version": "5.0.0",
"description": "A 100% compliant, self-hosted javascript parser with high focus on both performance and stability",
"main": "dist/meriyah.cjs",
"module": "dist/meriyah.min.mjs",
"browser": "dist/meriyah.umd.min.js",
"unpkg": "dist/meriyah.umd.min.js",
"types": "dist/src/meriyah.d.ts",
"typings": "dist/src/meriyah.d.ts",
"exports": {
"types": "./dist/src/meriyah.d.ts",
"import": "./dist/meriyah.min.mjs",
"require": "./dist/meriyah.cjs"
},
"license": "ISC",
"homepage": "https://github.com/meriyah/meriyah",
"repository": {
"type": "git",
"url": "https://github.com/meriyah/meriyah"
},
"bugs": {
"url": "https://github.com/meriyah/meriyah/issues"
},
"author": {
"name": "Kenny F.",
"url": "https://github.com/KFlash"
},
"contributors": [
{
"name": "Chunpeng Huo",
"url": "https://github.com/3cp"
}
],
"keywords": [
"parsing",
"ecmascript",
"javascript",
"parser",
"performance",
"estree",
"es2018",
"es2019",
"es2020",
"es2021",
"esnext",
"lexer",
"ast",
"lightweight"
],
"files": [
"dist",
"README.md",
"CHANGELOG.md",
"LICENSE.md"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"build:watch": "tsc -w",
"lint": "npm run lint:eslint && npm run lint:prettier",
"lint:eslint": "eslint",
"lint:prettier": "prettier . --check",
"fix": "npm run fix:eslint && npm run fix:prettier",
"fix:eslint": "eslint --fix",
"fix:prettier": "prettier . --write",
"bundle": "node scripts/bundle.js",
"bundle:bench": "node scripts/bundle.js bench",
"test": "mocha --\"test/**/*.ts\"",
"test-single": "mocha",
"test:watch": "npm run test -- --watch --watch-extensions ts",
"test:verbose": "npm run test -- -R spec",
"test:watch:verbose": "npm run test:watch -- -R spec",
"prepare-nightly": "node scripts/bump-dev-version",
"coverage": "cross-env TS_NODE_PROJECT=\"test/tsconfig.json\" nyc -n \"src/**/*.ts\" -e .ts -i ts-node/register -r text-summary -r lcov -r html npm test",
"post_coverage": "cross-env cat ./coverage/lcov.info | coveralls",
"prepublishOnly": "npm run bundle",
"preversion": "npm test",
"version": "standard-changelog && git add CHANGELOG.md",
"postversion": "git push && git push --tags && npm publish",
"prepare": "husky",
"generate-test262-whitelist": "node scripts/generate-test262-whitelist.js"
},
"devDependencies": {
"@eslint/js": "^9.4.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-terser": "^0.4.4",
"@types/mocha": "^10.0.6",
"@types/node": "^20.14.2",
"@unicode/unicode-15.1.0": "^1.5.2",
"coveralls": "^3.1.1",
"cross-env": "^7.0.3",
"eslint": "^9.7.0",
"eslint-plugin-import-x": "^3.0.1",
"eslint-plugin-n": "^17.8.1",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"mocha": "^10.4.0",
"nyc": "^15.1.0",
"prettier": "3.3.1",
"rollup": "^4.18.0",
"rollup-plugin-typescript2": "^0.36.0",
"source-map-support": "^0.5.21",
"standard-changelog": "^6.0.0",
"test262": "tc39/test262#880f8a5ba64d4e9df02e4c961e5abb9dec380f2b",
"test262-parser-runner": "^0.5.0",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.4.5",
"typescript-eslint": "rc-v8",
"unexpected": "^13.2.1"
},
"engines": {
"node": ">=18.0.0"
},
"lint-staged": {
"*.{ts,mts,cts,js,mjs,cjs}": "eslint --fix",
"*": "prettier --write --ignore-unknown"
}
}