-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 977 Bytes
/
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
{
"name": "webpack-drupal-plugin",
"version": "2.0.0",
"description": "Webpack plugin that bridges Webpack-built assets with Drupal extensions.",
"main": "index.js",
"author": "wongjn",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/wongjn/webpack-drupal-plugin.git"
},
"keywords": [
"drupal",
"webpack",
"webpack-plugin"
],
"scripts": {
"format": "prettier --write . && eslint --fix .",
"lint": "tsc; eslint .",
"pretest": "npm run lint",
"test": "mocha"
},
"engines": {
"node": ">=12"
},
"peerDependencies": {
"webpack": "^5"
},
"devDependencies": {
"@types/mocha": "^8.2.0",
"@types/node": "^12.19.15",
"eslint": "^7.19.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"mocha": "^8.2.1",
"prettier": "^2.2.1",
"typescript": "^4.1.3",
"webpack": "^5.20.2"
}
}