-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.7 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.7 KB
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
{
"name": "jsleri",
"version": "1.1.15",
"description": "A JavaScript Left-right parser",
"main": "lib/jsleri.js",
"type": "module",
"scripts": {
"test": "./node_modules/.bin/mocha --require @babel/register",
"lint": "./node_modules/.bin/eslint ./jsleri.js --color",
"build:dev": "./node_modules/.bin/webpack --progress --devtool eval-cheap-source-map",
"build:prod": "NODE_ENV='production' ./node_modules/.bin/webpack --progress",
"babel": "npx babel ./jsleri.js --out-dir lib && cp ./index.d.ts lib/ && echo \">WARNING: This \\`lib\\` folder is generated with \\`npm run babel\\` and should not be modified!\" > lib/README.md "
},
"repository": {
"type": "git",
"url": "git+https://github.com/cesbit/jsleri.git"
},
"keywords": [
"Language",
"Parser",
"Grammar"
],
"author": "Jeroen van der Heijden",
"license": "MIT",
"bugs": {
"url": "https://github.com/cesbit/jsleri/issues"
},
"homepage": "https://github.com/cesbit/jsleri#readme",
"dependencies": {
"@babel/runtime": "^7.28.6"
},
"devDependencies": {
"@babel/cli": "^7.28.6",
"@babel/core": "^7.29.0",
"@babel/eslint-parser": "^7.28.6",
"@babel/plugin-transform-class-properties": "^7.28.6",
"@babel/plugin-transform-object-assign": "^7.27.1",
"@babel/plugin-transform-runtime": "^7.28.5",
"@babel/preset-env": "^7.29.5",
"@babel/register": "^7.28.6",
"babel-eslint": "^10.1.0",
"babel-loader": "^10.0.0",
"eslint": "^9.39.2",
"mocha": "^11.7.5",
"terser": "^5.44.1",
"terser-webpack-plugin": "^5.3.16",
"webpack": "^5.104.1",
"webpack-cli": "^6.0.1"
},
"overrides": {
"diff": "^9.0.0",
"serialize-javascript": "^7.0.5"
}
}