-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
58 lines (58 loc) · 1.56 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
{
"name": "merge-jsons-webpack-plugin",
"description": "This plugin is used to merge json files into single json file,using glob or file names",
"version": "2.0.1",
"author": {
"email": "[email protected]",
"name": "Sudharsan Tettu"
},
"contributors": [],
"homepage": "https://github.com/tettusud/merge-jsons-webpack-plugin.git",
"bugs": "https://github.com/tettusud/merge-jsons-webpack-plugin/issues",
"repository": {
"type": "git",
"url": "https://github.com/tettusud/merge-jsons-webpack-plugin.git"
},
"private": false,
"license": "MIT",
"keywords": [
"json files merge",
"json files merge plugin",
"json files merge loader",
"json merge",
"i18n",
"webpack",
"json",
"files",
"merge",
"plugin",
"configuration"
],
"dependencies": {
"glob": "7.1.1"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/mocha": "^5.2.7",
"chai": "^4.2.0",
"es6-promise": "^4.2.8",
"html-webpack-plugin": "^4.5.0",
"json-diff": "^0.5.4",
"mocha": "^5.2.0",
"ts-node": "^7.0.1",
"typescript": "^4.1.3",
"typings": "^2.1.0",
"webpack": "^5.64.4",
"webpack-cli": "^4.3.0",
"webpack-dev-server": "^3.11.0"
},
"main": "index.js",
"scripts": {
"build": "tsc",
"watch": " tsc -w",
"post-install": "typings install",
"deploy": "npm publish",
"test": "npm list webpack && mocha -r ts-node/register spec/*.spec.ts",
"start": "webpack serve --content-base example/build/ --config example/webpack.config.js --watch --inline"
}
}