-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
43 lines (43 loc) · 1.29 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
{
"name": "module-replace-webpack-plugin",
"version": "0.0.11",
"description": "Replace any imported file/module using a simple webpack plugin",
"author": "Yatin Gera <[email protected]> (https://github.com/nerdchacha)",
"main": "dist/index.js",
"keywords": [
"webpack",
"plugin",
"replace",
"module-replace-webpack-plugin"
],
"engines": {
"node": ">=7.4.2"
},
"scripts": {
"start": "npm run build -- -w",
"build": "cross-env NODE_ENV=production babel src -d dist",
"clean": "del-cli dist",
"lint": "eslint --cache src",
"lint-staged": "lint-staged",
"prebuild": "npm run clean",
"prepublish": "npm run build",
"test": "cross-env NODE_ENV=test mocha --require babel-core/register"
},
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"chai": "^4.1.2",
"cross-env": "^5.1.3",
"del-cli": "^1.1.0",
"eslint-config-webpack": "^1.2.5",
"eslint-plugin-import": "^2.9.0",
"eslint": "^4.18.2",
"mocha": "^5.0.1",
"webpack": "^3.6.0"
},
"bugs": "https://github.com/nerdchacha/module-replace-webpack-plugin/issues",
"repository": "https://github.com/nerdchacha/module-replace-webpack-plugin.git"
}