-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (51 loc) · 1.27 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
{
"name": "webpack-extend-json",
"version": "1.0.0-beta.11",
"description": "Webpack loader that gives the ability to extend JSON files",
"main": "dist/src/index.js",
"scripts": {
"test": "npm run build && jest",
"build": "tsc",
"lint": "eslint ./src --ext .ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ibrahimrahhal/webpack-extend-json.git"
},
"keywords": [
"webpack",
"webpack-loader",
"json",
"extend",
"extend-json",
"json file",
"json loader",
"webpack json"
],
"author": "Ibrahim Rahhal <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Ibrahimrahhal/webpack-extend-json/issues"
},
"homepage": "https://github.com/Ibrahimrahhal/webpack-extend-json#readme",
"peerDependencies": {
"webpack": "^5.0.0"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/node": "^14.14.31",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"eslint": "^7.21.0",
"jest": "^26.6.3",
"ts-jest": "^26.5.2",
"ts-node": "^9.1.1",
"typescript": "^4.2.3",
"webpack": "^5.25.0",
"webpack-cli": "^4.5.0"
},
"files": [
"dist/src/*"
],
"bin": "dist/src/bin/index.js"
}