This repository was archived by the owner on Jul 31, 2023. It is now read-only.
forked from gajus/write-file-webpack-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.26 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.26 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
{
"name": "write-file-webpack-plugin",
"license": "BSD-3-Clause",
"version": "3.1.8",
"description": "Forces webpack-dev-server to write bundle files to the file system.",
"main": "./dist/index.js",
"author": {
"name": "Gajus Kuizinas",
"email": "gk@anuary.com",
"url": "http://gajus.com"
},
"repository": {
"type": "git",
"url": "https://github.com/gajus/write-file-webpack-plugin"
},
"keywords": [
"webpack",
"plugin",
"webpack-dev-server",
"write",
"file"
],
"scripts": {
"pragmatist": "node ./node_modules/.bin/pragmatist --es5",
"lint": "npm run pragmatist lint",
"test": "npm run pragmatist test",
"build": "npm run pragmatist build",
"watch": "npm run pragmatist watch",
"watch-lint": "npm run pragmatist watch-lint",
"watch-test": "npm run pragmatist watch-test",
"watch-build": "npm run pragmatist watch-build",
"readme": "node ./node_modules/.bin/gitdown ./.README/README.md --output-file ./README.md"
},
"devDependencies": {
"pragmatist": "^3.0.16",
"webpack": "^2.1.0-beta.4",
"webpack-dev-server": "^2.0.0-beta"
},
"dependencies": {
"chalk": "^1.1.1",
"filesize": "^3.2.1",
"lodash": "^4.5.1",
"mkdirp": "^0.5.1",
"moment": "^2.11.2"
}
}