-
Notifications
You must be signed in to change notification settings - Fork 54
/
package.json
56 lines (56 loc) · 1.5 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
{
"name": "write-file-webpack-plugin",
"license": "BSD-3-Clause",
"version": "4.5.1",
"description": "Forces webpack-dev-server to write bundle files to the file system.",
"main": "./dist/WriteFileWebpackPlugin.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"
],
"engines": {
"node": ">=4"
},
"scripts": {
"lint": "eslint ./src",
"build": "babel --source-maps --copy-files ./src --out-dir ./dist",
"prepare": "babel --source-maps --copy-files ./src --out-dir ./dist",
"test": "echo 'Please add tests :-('",
"readme": "gitdown ./.README/README.md --output-file ./README.md",
"precommit": "npm run lint && npm run test"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-preset-env": "^1.6.1",
"del": "^3.0.0",
"eslint": "^4.19.1",
"eslint-config-canonical": "^9.3.2",
"husky": "^0.14.3",
"webpack": "^4.6.0",
"webpack-cli": "^2.0.14",
"webpack-dev-server": "^3.1.3"
},
"dependencies": {
"chalk": "^2.4.0",
"debug": "^3.1.0",
"filesize": "^3.6.1",
"lodash": "^4.17.13",
"mkdirp": "^0.5.1",
"moment": "^2.22.1",
"write-file-atomic": "^2.3.0"
}
}