-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.81 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
{
"name": "lezer-webpack-loader",
"version": "1.0.0",
"description": "Webpack loader for Lezer grammar files.",
"author": "João Brilhante",
"license": "GPL-3.0-only",
"repository": {
"type": "git",
"url": "[email protected]:joaobrlt/lezer-webpack-loader.git"
},
"homepage": "https://github.com/joaobrlt/lezer-webpack-loader",
"bugs": "https://github.com/joaobrlt/lezer-webpack-loader/issues",
"main": "dist/bundle.js",
"engines": {
"node": ">= 12.13.0"
},
"scripts": {
"prepare": "husky install",
"clean": "rimraf dist/ coverage/",
"prebuild": "npm run clean",
"build": "cross-env NODE_ENV=production babel src -d dist --copy-files",
"lint": "npm run prettier && npm run eslint",
"lint:fix": "npm run prettier:fix && npm run eslint:fix",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write .",
"eslint": "eslint .",
"eslint:fix": "eslint --fix .",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"files": [
"dist"
],
"peerDependencies": {
"@lezer/generator": "^1.3.0",
"webpack": "^5.0.0"
},
"dependencies": {
"@lezer/generator": "^1.3.0",
"loader-utils": "^3.2.1",
"schema-utils": "^4.2.0"
},
"devDependencies": {
"@babel/cli": "^7.22.5",
"@babel/core": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"@types/jest": "^29.5.2",
"babel-loader": "^9.1.2",
"cross-env": "^7.0.3",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jest": "^27.2.2",
"husky": "^8.0.0",
"jest": "^29.5.0",
"lint-staged": "^13.2.3",
"memfs": "^4.2.0",
"prettier": "^2.8.8",
"rimraf": "^5.0.1",
"webpack": "^5.88.1"
},
"keywords": [
"webpack",
"loader",
"lezer",
"grammar",
"codemirror"
]
}